有没有办法在 SendGrid 的自动化电子邮件系统中添加抄送电子邮件地址?
我目前正在 SendGrid 中构建自动化电子邮件。 设置过程看起来非常简单,但我可以找不到添加抄送电子邮件地址的方式或位置。
我研究了 SendGrid 的文档和其他网站以找到可能的解决方案。两个来源有正确的想法,但他们提供了使用 Node.js 的示例(请参阅 SendGrid个性化和Twilio 博客)。我需要在 SendGrid 的自动化电子邮件创建器中添加抄送地址。
SendGrid Automation 系统是否提供此功能,或者最好通过 Node.js(或其他后台处理语言)实现此功能?
I am currently building an automation email in SendGrid. The setup process seems very straightforward, but I can't find how or where to add a CC email address.
I've researched SendGrid's documentation and other sites to find a possible solution. Two sources had the right idea, but they provided examples using Node.js (see SendGrid Personalizations and Twilio Blog). I am needing to add a CC address inside SendGrid's Automation Email creator.
Does the SendGrid Automation system provide this capability, or is this best achieved through Node.js (or other background-handling languages)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信您可以通过抄送发送自动化。
您可以通过注册 事件 Webhook。
当用户回复自动化电子邮件并只是收到一封电子邮件说已收到他们的消息时,我认为这是因为您发送自动化的电子邮件地址刚刚设置为自动回复。您可以使用 入站解析 Webhook,以便您可以在收到发送到该地址的电子邮件时触发其他事件。在这种情况下,您可以向您的销售团队发送电子邮件,或者在数据库中注册响应,或者将消息转发到 CRM 系统。
如果您唯一的解决方案是使用抄送,那么自动化可能不适合您,您必须使用 邮件发送 API 可以让您对发送的电子邮件有更多的控制权,但会失去自动化功能。
I don't believe that you can send an Automation with a cc.
You can track when Automation emails are sent to users by registering for the Event Webhook.
When users reply to the automation email and just get an email saying that their message was received, I assume that is because the email address you send the automation from is just set up to autorespond. You could set that email address up with the Inbound Parse Webhook so that you can trigger other events when you receive emails to that address. You could, in that case, send an email to your sales team, or register the response in a database, or forward the message to a CRM system.
If the only solution for you is to use a cc, then Automations may not work for you and you will have to send using the Mail Send API which gives you lots more control over the email being sent, but does lose the automation features.