我有一个遗留应用程序,其中email.cfm
文件与cfmail
标记一起使用以发送电子邮件:
<cfmail from="abc@123.com" to="def@456.com" subject="New e-mail!">
// lots of HTML
</cfmail>
现在我想为ColdFusion Model Glue 3更新它。我想在控制器中使用mail
对象发送它,并在body中包含CFM页面:
var mail = new mail();
mail.setFrom("abc@123.com");
mail.setTo("def@456.com");
mail.setSubject("New e-mail!");
mail.setBody( ** SOME CFM FILE ** );
mail.send();
有谁知道我该怎么做吗?
您可以在cfsavecontent
块中呈现您想要发送电子邮件的内容,然后在电子邮件中使用,如:
<cfsavecontent variable="myemail">
...add some HTML, include another file, whatever...
</cfsavecontent>
<cfscript>
mail.setBody( myemail );
</cfscript>
见http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d57.html
调用CFC将其分配给一个变量,如cfset request。emaiBody = cfc.function()。然后把它放到setBody标签中
OP被说服使用CFML,但要回答最初提出的问题:
var mail = new Mail();
mail.setFrom("abc@123.com");
mail.setTo("def@456.com");
mail.setSubject("New e-mail!");
mail.setType("html");
savecontent variable="mailBody" {
include "email.cfm";
}
mail.setBody(mailBody);
mail.send();
我最终听从Henry在评论中的建议,创建了一个基于cfml的CFC:
<cfcomponent>
<cffunction name="SendMail">
<cfargument name="from"/>
<cfargument name="to"/>
<cfargument name="subject"/>
<cfmail from="#from#" to="#to#" subject="#subject#">
<!--- HTML for e-mail body here --->
</cfmail>
</cffunction>
</cfcomponent>
Dave Long的建议也很好,即使用<cfcomponent>
创建组件,然后将代码包装在<cfscript>
标记中。这使您能够在没有等价的cfscript的情况下退回到CFML,或者使用CFML更容易:
<cfcomponent>
<cfscript>
void function GetData()
{
RunDbQuery();
}
</cfscript>
<cffunction name="RunDbQuery">
<cfquery name="data">
SELECT * FROM ABC;
</cfquery>
<cfreturn data>
</cffunction>
</cfcomponent>