山魈 "reject_reason":"unsigned"
Mandrill "reject_reason":"unsigned"
我正在尝试使用 mandrill 电子邮件服务发送电子邮件,但出现以下错误:
[
{
"email": "pranav_withyou@hotmail.com",
"status": "rejected",
"_id": "daab0daa538a4fe9b161be709593be0b",
"reject_reason": "unsigned"
}
]
我正在尝试使用 ajax 调用 javascript 来发送电子邮件,例如:
$.ajax({
type: "POST",
url: "https://mandrillapp.com/api/1.0/messages/send.json",
data: {
"key": "RemovedforSecurityitscorrect",
"message": {
"html": "<p>Example HTML content</p>",
"text": $('#emailText').val(),
"subject": $('#emailSubject').val(),
"from_email": $('#fromEmail').val(),
"from_name": $('#fromName').val(),
"to": [{
"email": $('#toEmail').val(),
"name": $('#recipientName').val(),
"type": "to"
}],
"headers": {
"Reply-To": $('#fromName').val()
}
},
success: function (data) {
console.log("Email Sent");
},
error: function (xhr, status, error) {
console.log("Error while sending mail");
}
}
});
所有值都将传给 ajax 调用并从响应中明显看出服务器已调用。有什么问题?
我明白了,这是一个愚蠢的错误。我试图通过我的个人电子邮件 ID 发送邮件,该电子邮件 ID 位于 与配置和验证 Mandrill 的域不同的域。
搜索错误原因,我发现当 从未经验证的域或没有有效 SPF 和 DKIM 记录的域发送的邮件将被 reject_reason 拒绝时,Mandrill 发送了此错误, 无符号.
更多信息请参考
- https://mandrillapp.com/api/docs/messages.html
- https://mandrill.zendesk.com/hc/en-us/articles/205582247-About-Domain-Verification
- https://mandrill.zendesk.com/hc/en-us/articles/205582267-About-SPF-and-DKIM
要为 Mandrill 进行与 SPF 和 DKIM 相关的所需设置,请参考:
我正在尝试使用 mandrill 电子邮件服务发送电子邮件,但出现以下错误:
[
{
"email": "pranav_withyou@hotmail.com",
"status": "rejected",
"_id": "daab0daa538a4fe9b161be709593be0b",
"reject_reason": "unsigned"
}
]
我正在尝试使用 ajax 调用 javascript 来发送电子邮件,例如:
$.ajax({
type: "POST",
url: "https://mandrillapp.com/api/1.0/messages/send.json",
data: {
"key": "RemovedforSecurityitscorrect",
"message": {
"html": "<p>Example HTML content</p>",
"text": $('#emailText').val(),
"subject": $('#emailSubject').val(),
"from_email": $('#fromEmail').val(),
"from_name": $('#fromName').val(),
"to": [{
"email": $('#toEmail').val(),
"name": $('#recipientName').val(),
"type": "to"
}],
"headers": {
"Reply-To": $('#fromName').val()
}
},
success: function (data) {
console.log("Email Sent");
},
error: function (xhr, status, error) {
console.log("Error while sending mail");
}
}
});
所有值都将传给 ajax 调用并从响应中明显看出服务器已调用。有什么问题?
我明白了,这是一个愚蠢的错误。我试图通过我的个人电子邮件 ID 发送邮件,该电子邮件 ID 位于 与配置和验证 Mandrill 的域不同的域。
搜索错误原因,我发现当 从未经验证的域或没有有效 SPF 和 DKIM 记录的域发送的邮件将被 reject_reason 拒绝时,Mandrill 发送了此错误, 无符号.
更多信息请参考
- https://mandrillapp.com/api/docs/messages.html
- https://mandrill.zendesk.com/hc/en-us/articles/205582247-About-Domain-Verification
- https://mandrill.zendesk.com/hc/en-us/articles/205582267-About-SPF-and-DKIM
要为 Mandrill 进行与 SPF 和 DKIM 相关的所需设置,请参考: