Lucee Tag Reference
Tag <CFMAILPART>
Specifies one part of a multipart e-mail message. Can only be used in the cfmail tag. You can use more than one cfmailpart tag within a cfmail tag
Body
This tag must have a body.
Example
<cfmailpart [charset="string"] type="string" [wraptext="number"]> </cfmailpart>
This tag is also supported within cfscript
<cfscript> mailpart [charset="string"] type="string" [wraptext="number"] { } </cfscript>
Attributes
The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name | Type | Required | Description |
---|---|---|---|
charset | string | No | The character encoding in which the part text is encoded |
type | string | Yes | The MIME media type of the part |
wraptext | number | No | Specifies the maximum line length, in characters of the mail text |