作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用以下 to
属性进行发送请求 API 调用:
"to": [
{
"email": "recipient.email@example.com",
"type": "to"
},
{
"email": "another-email@example.com",
"type": "cc"
},
{
"email": "3rd-email@example.com",
"type": "cc"
}
]
我希望 Mandrill 根据上面请求中的属性发送一封电子邮件,其中 To
字段是 recipient.email@example.com
并且 CC
字段是 another-email@example.com; 3rd-email@example.com
。
Mandrill 改为发送三封单独的电子邮件,其中每封电子邮件都指定给一个人,CC
字段被视为To
字段。
有没有办法让 Mandrill 发送一封将抄送地址视为实际抄送收件人的电子邮件?
最佳答案
尝试将 preserve_recipients
选项设置为 true
。根据their documentation它表明
whether or not to expose all recipients in to "To" header for each email
关于Mandrill - CCed 电子邮件分开发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41156992/
我使用以下 to 属性进行发送请求 API 调用: "to": [ { "email": "recipient.email@example.com", "typ
我是一名优秀的程序员,十分优秀!