<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>
Examples
Example 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>
See also
- Sending Emails
- <cfmail>
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)