2
cfscriptを使って次のようにします:次を使用してCF9でcfscriptを使用して添付ファイル付きのメールをどのように送信しますか?
<cfmail
from="[email protected]"
to="[email protected]"
subject="Attachments">
<cfmailparam name="Reply-To" value="[email protected]">
Some message goes here...
<cfmailparam file="c:\files\readme.txt">
<cfmailparam file="c:\files\logo.gif">
</cfmail>
はエラー「関数キーワードは、関数宣言にありません」原因:
mail subject="Test Email" from="[email protected] to="[email protected]" server="localhost" {
mailpart file="#ExpandPath('readme.txt')#";
}