<cfmailpart>

edit

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

edit

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>

Related System Properties / Environment Variables

See also