【发布时间】:2021-10-24 01:52:02
【问题描述】:
我目前正在尝试使用 Mailchimp 发送电子邮件并拥有经过验证的 example.com 域。问题是我尝试将电子邮件从no-reply@example.com 发送到具有gmail.com 或outlook.com 等域的电子邮件列表,但Mailchimp 返回recipient-domain-mismatch 错误。是否有允许向其他域发送电子邮件的配置或额外步骤?
完整请求
{
"key": "**********************",
"message": {
"html": "content",
"subject": "subject",
"from_email": "no-reply@example.com",
"to": [
{
"email": "client@gmail.com",
"type": null
}
]
}
}
完整回复
[
{
"email": "client@gmail.com",
"status": "rejected",
"_id": "********************************",
"reject_reason": "recipient-domain-mismatch"
}
]
【问题讨论】:
标签: c# .net mailchimp restsharp mailchimp-api-v3.0