implements a MultiPartMixedMessage class, a specialization of MultiPartMessage
More...
|
| | addEncodePart (data data, string enc, string content_type=MimeTypeText, string disp="inline", *hash hdr) |
| | adds a message part to the end of the list; encodes the data according to the transfer encoding argument passed More...
|
| |
| | addPart (data data, string content_type=MimeTypeText, string disp="inline", *hash hdr) |
| | adds a message part to the end of the list; the data muyst already be encoded and any Content-Transfer-Encoding header must already be present in hdr More...
|
| |
| | constructor (string boundary=MultiPartMessage::getBoundary()) |
| | creates the object More...
|
| |
| hash | getMsgAndHeaders () |
| | returns a hash of the message More...
|
| |
| | spliceEncodePart (data data, string enc, string content_type=MimeTypeText, string disp="inline", *hash hdr) |
| | adds a message part to the start of the list; encodes the data according to the transfer encoding argument passed More...
|
| |
| | splicePart (data data, string content_type=MimeTypeText, string disp="inline", *hash hdr) |
| | adds a message part to the start of the list; the data muyst already be encoded and any Content-Transfer-Encoding header must already be present in hdr More...
|
| |
| | constructor (string mptype, string boundary=MultiPartMessage::getBoundary()) |
| | creates the object More...
|
| |
|
binary | serialize () |
| | serializes the message and returns a binary object ready to send over a socket
|
| |
implements a MultiPartMixedMessage class, a specialization of MultiPartMessage
adds a message part to the end of the list; encodes the data according to the transfer encoding argument passed
- Parameters
-
| data | the unencoded data for the part |
| enc | the transfer encoding to use for the part; see MIME Content Transfer Encoding Constants for possible values |
| content_type | the content_type for the part |
| disp | the Content-Disposition header (ex: 'inline', 'attachment; filename="file.txt"') |
| hdr | an optional hash of headers for the part |
- Exceptions
-
| MIME-TRANSFER-ENCODING-ERROR | unknown transfer encoding |
| PART-ERROR | empty content type argument passed |
- See Also
-
adds a message part to the end of the list; the data muyst already be encoded and any Content-Transfer-Encoding header must already be present in hdr
- Parameters
-
| data | the data for the part |
| content_type | the content_type for the part |
| disp | the Content-Disposition header (ex: 'inline', 'attachment; filename="file.txt"') |
| hdr | an optional hash of headers for the part |
- Exceptions
-
| PART-ERROR | empty content type argument passed |
- See Also
-
creates the object
- Parameters
-
| boundary | the boundary to use between parts |
| hash Mime::MultiPartMixedMessage::getMsgAndHeaders |
( |
| ) |
|
returns a hash of the message
- Returns
- a hash of the message with the following keys:
hdr: a hash of header information
msg: a binary object of serialized message parts
adds a message part to the start of the list; encodes the data according to the transfer encoding argument passed
- Parameters
-
| data | the unencoded data for the part |
| enc | the transfer encoding to use for the part; see MIME Content Transfer Encoding Constants for possible values |
| content_type | the content_type for the part |
| disp | the Content-Disposition header (ex: 'inline', 'attachment; filename="file.txt"') |
| hdr | an optional hash of headers for the part |
- Exceptions
-
| MIME-TRANSFER-ENCODING-ERROR | unknown transfer encoding |
| PART-ERROR | empty content type argument passed |
- See Also
-
adds a message part to the start of the list; the data muyst already be encoded and any Content-Transfer-Encoding header must already be present in hdr
- Parameters
-
| data | the data for the part |
| content_type | the content_type for the part |
| disp | the Content-Disposition header (ex: 'inline', 'attachment; filename="file.txt"') |
| hdr | an optional hash of headers for the part |
- Exceptions
-
| PART-ERROR | empty content type argument passed |
- See Also
-