我正在使用SendGrid’s SMTP API(不是WEB API),我正在考虑使用cfmail
发送电子邮件。如果我使用cfmail
发送电子邮件,并希望在某处使用X-SMTPAPI
标题,您认为cfmail
是否可以这样做?请澄清。
答案 0 :(得分:2)
您可以使用cfmailparam
标记添加自定义标头。就这样:
<cfmailparam
name="X-SMTPAPI"
value="{\"category\":\"Cool Emails\"}">
在cfmail
标签的上下文中,它将如下所示。
<cfmail
from="you@example.com"
to="nick@sendgrid.com"
subject="I am using CF Mail to do this!">
<cfmailparam
name="X-SMTPAPI"
value="{\"category\":\"Cool Emails\"}">
Look at my awesome use of cfmail!
</cfmail>