我在C#MVC应用程序中使用Postal.NET作为电子邮件:
我正在使用SendGrid发送电子邮件。 Sendgrid要求使用" X-SMTPAPI"发送自定义标头参数。标题属性。
如何在Postal.NET中添加自定义标头值? (例如myMessage.Headers.Add(" X-SMTPAPI",jsonString);
答案 0 :(得分:2)
我还没有使用过这个库,但我觉得你可以在电子邮件上方的视图中添加标题。这就是您创建的视图包含整个电子邮件 - 包括标题。在文档中,您可以看到To:和From:包含在视图中。这来自文档:
To: @ViewBag.To
From: lolcats@website.com
Subject: Important Message
Hello,
You wanted important web links right?
Check out this: @ViewBag.FunnyLink
<3
所以我认为你可能会做类似的事情:
X-SMTPAPI: @ViewBag.jsonAPIString
To: @ViewBag.To
From: lolcats@website.com
Subject: Important Message
Hello,
You wanted important web links right?
Check out this: @ViewBag.FunnyLink
<3