未使用setTemplateId设置Sendgrid模板

时间:2016-07-27 15:51:27

标签: sendgrid

我无法在sendgrid发送的电子邮件中使用模板ID,使用以下代码(使用2.2):

   val sendgrid = new SendGrid(sendgridapikey)
   val sendgridEmail = new SG.Email()

   sendgridEmail.setSubject("Invitation Email")
   sendgridEmail.setFromName("Sender")
   sendgridEmail.setTemplateId("6305c994-af9a-432e-9a07-5d7f493800e1")
   sendgridEmail.setFrom("no-reply@domain.com")
   sendgridEmail.addTo(to)
  val response = sendgrid.send(sendgridEmail)

如果我删除上面的setTemplateId行但是没有删除,则会发送电子邮件。 请帮忙。谢谢!

0 个答案:

没有答案