编辑:添加了占位符替换的示例。
我会建议用 HTML 写出模板,然后将该 HTML 保存到您的数据库中。然后您可以创建一个可以查询您的数据库的函数,然后填充并发送您的电子邮件。那将是相当轻量级的。
<cfscript>
// Our mail function.
public Void function genEmail ( required Numeric templateTypeID, required String userEmail, required Struct placeholder ) {
// Created fake query of templates.
emailTemplateQuery = queryNew(
"templatetypeid,templatesubject,templatetext",
"integer,varchar,varchar",
[
{ templatetypeid=1,templatesubject='Welcome',templatetext='<h1>Thanks for registering!</h1><p>[[p1]]</p><p>[[p2]]</p>' },
{ templatetypeid=2,templatesubject='Password Reset',templatetext='<h1>You requested a password reset.</h1><p>[[p1]]</p><p>[[p2]]</p>' },
{ templatetypeid=3,templatesubject='Another Email',templatetext='<h1>You did something.</h1><p>[[p1]]</p><p>[[p2]]</p><p>[[p3]]</p>' }
]
) ;
///////////////////////////////////
// Build the query.
local.sql = "SELECT templatesubject, templatetext FROM emailTemplateQuery WHERE templateTypeID = :templateTypeID" ;
// Which template?
local.params = { templateTypeID = arguments.templateTypeID };
// Query options?
local.queryoptions = {
dbtype="query"
// datasource="myDSN" << Use your DSN for final query.
} ;
// Create a new query and execute it.
local.emailQ = QueryExecute(local.sql, local.params, local.queryoptions ) ;
local.finalEmailString = local.emailQ.templatetext ;
// Let's inject our placeholder info into our email template
for ( var p IN arguments.placeholder ) {
local.finalEmailString = local.finalEmailString.replaceNoCase(
"[[" & p & "]]" ,
arguments.placeholder[p] ,
"All"
) ;
}
// Create a new mail object.
local.sendEmail = new mail() ;
// Save mail body to a variable.
savecontent variable="emailBody" {
writeOutput(local.finalEmailString);
}
// Set From, To, Type, etc.
sendEmail.setFrom("fromMe@domain.com");
sendEmail.setTo(arguments.userEmail);
sendEmail.setType("html");
sendEmail.setSubject(local.emailQ.templatesubject);
// Send the email. So uncomment next line to send.
//sendEmail.send(body=emailBody);
// We don't have to return anything, but for this demo, we want to see what email will be sent.
writeDump(local.emailQ.templatesubject);
writeDump(local.finalEmailString);
}
// To send an email, just call genEmail() and pass the type and who to.
genEmail(1,"bill@beexcellent.com",{"p1":"This is my first replacement.","p2":"This is my second replacement."}) ;
writeoutput("<br><br>");
genEmail(2,"ted@beexcellent.com",{"p1":"This is my third replacement.","p2":"This is my fourth replacement."}) ;
writeoutput("<br><br>");
genEmail(3,"rufus@beexcellent.com",{"p1":"This is my fifth replacement.","p2":"This is my sixth replacement.","p3":"This is my seventh replacement."}) ;
</cfscript>
这可以简化一点。我的大部分代码是设置测试数据并使用 Query Of Query。您希望对数据源进行常规调用。您还可以在cfmail
标签内更有效地使用查询结果。我强烈建议在允许任何东西从您的系统发送电子邮件之前进行大量过滤和验证。您还可以从电子邮件功能返回状态代码以验证成功(或其他信息)。
您可以将电子邮件进程保存到其自己的 CFC 中,然后将其缓存以在整个应用程序中使用。
注意:对于大多数 CF,我也更喜欢脚本而不是标签,但如果你愿意,我上面的逻辑可以转换回标签。
https://cffiddle.org/app/file?filepath=639e2956-a658-4676-a0d2-0efca81d7c23/ce5629c9-87e6-4bff-a9b8-86b608e9fc72/c8d38df7-f14d-481f-867d-2f7fbf3238f2.cfm
结果:
通过我的上述测试,您会收到带有以下 HTML 的电子邮件。
genEmail(1,"bill@beexcellent.com",{"p1":"This is my first
replacement.","p2":"This is my second replacement."})
欢迎
感谢您的注册!
这是我的第一个替代品。
这是我的第二次替换。
genEmail(2,"ted@beexcellent.com",{"p1":"This is my third
replacement.","p2":"This is my fourth replacement."})
重设密码
您请求重设密码。
这是我的第三次替换。
这是我的第四次换人。
genEmail(3,"rufus@beexcellent.com",{"p1":"This is my fifth
replacement.","p2":"This is my sixth replacement.","p3":"This is my
seventh replacement."})
另一封电子邮件
你做了什么。
这是我的第五次替换。
这是我的第六次替换。
这是我的第七次替换。