Tagged Values (<<MIMEConverter>>)
|
Tagged Value |
Description |
Allowed Values |
|
|---|---|---|---|
|
action |
Supply the MIME action you want to perform. |
decode |
convert a MIME message (header and content) to a multipart structure |
|
encode |
convert a MIME multipart structure to a MIME message (header and content) |
||
Parameters
Decode
|
Name |
Type |
Direction |
Description |
|---|---|---|---|
|
headerParameters |
Array of MIMEHeaderField |
in |
Supplies an array of MIME header parameters with name - value pairs. Examples:
|
|
content |
Blob |
in |
The body of the e-mail may contain any kind of data and is wrapped in an object of base type Blob. |
|
multipart |
out |
Provides the decoded MIME part in a complex object. |
Encode
|
Name |
Type |
Direction |
Description |
|---|---|---|---|
|
multipart |
in |
Supply a MIME part to be encoded. Use either multipart or multiparts, not both. |
|
|
multiparts |
Array of MIMEPart |
in |
Supply a collection of MIME parts to be encoded. Use either multipart or multiparts, not both. |
|
headerParameters |
Array of MIMEHeaderField |
out |
Provides the MIME headers. Examples:
|
|
content |
Blob |
out |
Provides the decoded content of the supplied MIME part(s). |
Parameter Types
|
Class |
Attribute |
Type |
|---|---|---|
|
MIMEHeaderField |
name |
String |
|
value |
String |
|
|
MIMEPart |
content |
Blob |
|
contentCharset |
String |
|
|
contentID |
String |
|
|
contentLocation |
String |
|
|
contentName |
String |
|
|
contentType |
String |
MIMEPart Structure
Figure: MIME Part Structure