如何使用带有php api的SendGrid模板发送电子邮件?

时间:2015-10-22 13:41:07

标签: php sendgrid

我最近在我的SendGrid帐户中创建了一个模板,我想在我的php应用程序中使用它。

我目前正在使用该帐户发送电子邮件,但我必须在我的应用内部编写html代码,但这并不能提供我所需的灵活性。

我无法在API中找到一个方法来选择我想要使用的模板并替换变量....

有什么想法吗?

由于

2 个答案:

答案 0 :(得分:4)

通过GitHub挖掘后,我发现这个代码片段对我有用......我希望它可以帮到你。

$mail->setTemplateId("xxxxxxxxxxxxxxxxxxxx");
// Put your template ID in from the web console after you create a template

答案 1 :(得分:2)