我最近在我的SendGrid帐户中创建了一个模板,我想在我的php应用程序中使用它。
我目前正在使用该帐户发送电子邮件,但我必须在我的应用内部编写html代码,但这并不能提供我所需的灵活性。
我无法在API中找到一个方法来选择我想要使用的模板并替换变量....
有什么想法吗?
由于
答案 0 :(得分:4)
通过GitHub挖掘后,我发现这个代码片段对我有用......我希望它可以帮到你。
$mail->setTemplateId("xxxxxxxxxxxxxxxxxxxx");
// Put your template ID in from the web console after you create a template
答案 1 :(得分:2)
如果您使用的是SendGrid PHP库:https://github.com/sendgrid/sendgrid-php#templates
如果不是:SendGrid: applying templates to WEB API pup curl method