<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

The MIME media type of the part

wraptext
number, optional

Specifies the maximum line length, in characters of the mail text

charset
string, optional

The character encoding in which the part text is encoded

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