转发入站电子邮件 sendgrid
Posted
技术标签:
【中文标题】转发入站电子邮件 sendgrid【英文标题】:Forwarding Inbound Emails sendgrid 【发布时间】:2021-08-20 03:57:16 【问题描述】:我有一个 node.js 应用程序,它使用 sendgrid api 发送电子邮件。
我希望人们能够回复这些内容,然后将回复转发到另一封电子邮件。例如:
bleep@bleep.com
向blop@blop.com
发送自动电子邮件。
blop 回复,“你好”,
我希望将包含“你好”的电子邮件转发到另一封电子邮件,例如 recieving@bleep.com。
(或类似的东西)
我做了一些研究,我能找到的只是在检测到入站电子邮件时使用parse webhooks
(无论是:])向服务器发送 POST 请求。
我不明白为什么(如果你能做到的话),你不能简单地将它转发到另一封电子邮件。
如果没有办法转发它们,是否有一些节点模块可以接受 POST 请求然后转发它? 提前谢谢!
【问题讨论】:
【参考方案1】:使用 SendGrid 中的“reply_to”。
https://sendgrid.com/docs/for-developers/sending-email/api-getting-started/#send-your-email-using-the-api
curl --request POST \
--url https://api.sendgrid.com/v3/mail/send \
--header 'Authorization: Bearer <<YOUR_API_KEY>>' \
--header 'Content-Type: application/json' \
--data '"personalizations":["to":["email":"john.doe@example.com","name":"John Doe"],"subject":"Hello, World!"],"content": ["type": "text/plain", "value": "Heya!"],"from":"email":"sam.smith@example.com","name":"Sam Smith","reply_to":"email":"sam.smith@example.com","name":"Sam Smith"'
-
将
reply_to
设置为“a@example.com”。
“a@example.com”是您拥有和控制的真实电子邮件地址,不是 SendGrid 的一部分。设置该帐户以转发发送给它的电子邮件以自动转发到“b@example.com”。
【讨论】:
以上是关于转发入站电子邮件 sendgrid的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Postman 中使用 SendGrid 的 Inbound Parse Webhook 示例?
如何将动态数据传递到sendgrid webapp上设计的电子邮件模板? : - | Sendgrid
SendGrid 无法发送电子邮件、firebase 功能。 (代码:403)