Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The standard way to format the 'From' email header is

From: John Doe <john.doe@example.com>

But what to do if there's a comma in the name?

From: John Doe, chief bottle washer <john.doe@example.com>

If I do that, my MTA automatically converts this into:

From: John@this.server.com, Doe@this.server.com, chief bottle washer <john.doe@example.com>

My first guess is to use double-quotes around the full name, but I can't find any official documentation confirming this and I'd like my emails to be readable by all email clients.

share|improve this question

2 Answers

E-mail header fields are defined by RFC 5322. The relevant section for multiple originators in the From header is 3.6.2, and the relevant sections for quoting delimiters is 3.2.1 and 3.2.4.

share|improve this answer
If I'm interpreting this RFC correctly (and these things are by no means human readable), then the solution is to enclose in double quotes From: "John Doe, chief bottle washer" <john.doe@example.com> ??? – Dalin Mar 22 at 15:38
Furthermore, is there any harm in wrapping all names in double quotes, regardless of whether a comma (or other illegal character) is present? – Dalin Mar 22 at 15:49
Yes, that's the correct way. Using double quotes all the time doesn't hurt anything, just make sure to escape a double-quote if it appears in the display name. – Fls'Zen Mar 23 at 2:57

As to by @Fls'Zen, yes the proper method is to enclose the name in double-quotes.

From a practical point of view there's no harm in wrapping all names in double-quotes, just be sure to escape a double-quote if it appears in the display name \" (or just replace with a single-quote). But if you want to be completely by the spec, you shouldn't use the double quotes if you don't have to.

For all the dense details, E-mail header fields are defined by RFC 5322. The relevant section for multiple originators in the From header is 3.6.2, and the relevant sections for quoting delimiters is 3.2.1 and 3.2.4.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.