138
CFML Language Reference
CFMAILPARAM
CFMAILPARAM can either attach a file or add a header to a message. If you use
CFMAILPARAM, it is nested within a CFMAIL tag. You can use more than one
CFMAILPARAM tags within a CFMAIL tag in order to attach one or more files and
headers.
See also
CFMAIL
.
Syntax
<CFMAIL
TO="recipient"
SUBJECT="msg_subject"
FROM="sender"
...more attibutes...
>
<CFMAILPARAM
FILE="file-name"
>
or
<CFMAILPARAM
NAME="header-name"
VALUE="header-value"
>
...
</CFMAIL>
FILE
Required if you do not specify the NAME attribute. Attaches the specified file to
the message. This attribute is mutually exclusive with the NAME attribute.
NAME
Required if you do not specify the FILE attribute. Specifies the name of the header.
Header names are case insensitive. This attribute is mutually exclusive with the
FILE attribute.
VALUE
Optional. Indicates the value of the header.
Example
<!--- This example shows the use of CFMAILPARAM --->
<HTML>
<HEAD>
<TITLE>CFMAILPARAM Example</TITLE>
</HEAD>
<BODY>
<H3>CFMMAILPARAM Example</H3>
<P>
This example uses CFMAILPARAM to attach two files and add a header to a
message.
Содержание COLDFUSION 4.5-CFML LANGUAGE
Страница 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Страница 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Страница 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Страница 296: ...272 CFMLLanguageReference INPUT TYPE text NAME number2 BR INPUT TYPE submit NAME submit VALUE Add FORM BODY HTML...
Страница 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Страница 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Страница 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Страница 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Страница 557: ...Chapter 2 ColdFusion Functions 533 P CFOUTPUT Value i is employee keysToStruct i CFOUTPUT P CFLOOP CFIF BODY HTML...
Страница 584: ...560 CFMLLanguageReference...
Страница 594: ...570 CFMLLanguageReference...