Mandrill “reject_reason”: “invalid-sender”

你。 提交于 2019-11-27 07:35:23

问题


I'm trying to send emails using mandrill email service but I get the following error

    Full Response
[
    {
        "email": "someemail@somedomain.com",
        "status": "rejected",
        "_id": "b814c2974594466cba9c904c54dca6c6",
        "reject_reason": "invalid-sender"
    }
]

Apart from the above error there is no more details about it. we are using .net to send emails with Mandrill SMTP settings.


回答1:


It'd be useful to see the call/email that's being sent. That error means that there's an invalid sender, as indicated in the reject reason field. That could be because of an invalid email address, invalidly-encoded from name, or invalid or broken encoding in other headers making it so that Mandrill can't parse the "from" header, but without seeing the actual email that you're sending, it's hard to say for sure exactly what the issue is.

You probably want to check that there's a fully-qualified domain name in the from email address, and that if the subject line is encoded, there aren't things like newline (\n) characters that break multibyte characters in the subject line. If you aren't able to identify the issue in the raw SMTP message, feel free to get in touch with support for further troubleshooting assistance.




回答2:


I had the same problem, in my case, I had forgotten to complete the template defaults "From Name" and "Subject".




回答3:


I had the same problem. In my case encoding in headers was the problem. I did change the headers encoding to UTF-8 and it worked. I was using C# SMTP and the code is below.

message.HeadersEncoding = Encoding.UTF8;

Hope it works!




回答4:


For me, it was because my emails were coming from email@example.net1 Mandrill rejected me because of the 1 at the end. e+mail@example.net and email@example.neta are both valid and will be accepted.

My other tests just had blank From headers, so they were rejected as well. I didn't even realize these emails were being received by Mandrill until I logged in and checked the API logs.




回答5:


I've had a similar problem recently. It was due to my use of certain characters in the message.from_name field. After searching through documentation and stack overflow, I couldn't find a list of forbidden characters, so although this doesn't necessarily pertain to your case, I thought I'd share this small list I compiled of some acceptable characters (not an exhaustive list):

  • a-z
  • A-Z
  • 0-9
  • _, -, !, #, $, %, \, ^, &, *, +, =, {, }, ?, .

In JS, here's a RegExp that will match with forbidden characters (or, rather, any characters that aren't in the aforementioned list):

const pattern = /[^a-zA-Z0-9_\-!#$%\^&*+={}?.]/;

Hope this is helpful for anyone else stuck on this.



来源:https://stackoverflow.com/questions/20604551/mandrill-reject-reason-invalid-sender

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!