<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
This tag must have a body.
This tag is also supported within <cfscript>
<cfmailpart
type=string
wrapText=number
charset=string
><!--- body ---></cfmailpart>
| Attribute | Description |
|---|---|
type
string, required
|
edit
The MIME media type of the part |
wrapText
number, optional
|
edit
Specifies the maximum line length, in characters of the mail text |
charset
string, optional
|
edit
The character encoding in which the part text is encoded |
Examples
editExample for Mailpart
<cfmail from="test@gmail.com" to="chk@gmail.com" subject="Testing emailpart" server="localhost">
<cfmailpart type="text/plain"/>
<cfoutput>This is test of cfmailpart</cfoutput>
</cfmail>
Related System Properties / Environment Variables
- LUCEE_MAIL_USE_7BIT_TRANSFER_ENCODING_FOR_HTML_PARTS - Enabled by default in Lucee 7
Type: boolean, Default: true
See also
- Sending Emails
- <cfmail>
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)