I'm wondering if word wrapping should be applied in text emails? And what about HTML emails? If so, what character would you normally wrap at?
|
|
RFC 2646 says:
Another popular standard is to wrap at 72 characters. This dates back to many console applications (like EDIT and many BBS interfaces) that displayed text within an ASCII "window" including a border and scrollbar, allowing slightly less than 80 characters to be displayed. |
|||
|
|
It is common to wrap lines at 72 (80 is also common but that means that it will go over 80 when quoted) to handle at least one or two levels of quotation. There is the "text/flowed" MIME type which means that the client will wrap text itself at window's boundaries but not that many clients support it. Just setup your editor to wrap at 72 and you will be safe and readable by the most people. EDIT: the exact type is
See rfc2646 for explanations. HTML mail should be avoided IMNSHO, not everybody reads mail in a browser or have HTML-enabled mail clients. Most reasons to use HTML (enriching mail with underline, bold and such) can be emulated. HTML doesn't need to be wrapped as the client will adapt to the window size. An alternative to HTML is the "text/enriched" MIME type which gives you most of the advantages of HTML mails w/o the hassle but again, may not be supported everywhere. See here for text/enriched. |
||||
|
|
|
Google says Results 1 - 10 of about ...
|
|||
|
I often find myself starting e-mail replies with:
which I got from Greg Lehey. Part of that page says:
|
|||
|
|
|
A good mail API like JavaMail will do this for you. Ideally, you would not have to think about this issue explicitly. |
|||
|
|
Generally you should wrap at 80, or a little less to allow dim clients to quote without wrapping. |
|||
|
|
|
Wrap at the first whitespace character before the 72nd position, or at the 72nd position if there isn't one. In Eudora when I used to use it, the convention was to leave a space at the end of the line indicating that it was wrapped, so it would signal the receiving client to re-flow the paragraph wherever it needed based on the width of the client's window. I'm not sure that this is the case in current email clients. |
|||
|
RFC 5322http://tools.ietf.org/html/rfc5322#section-2.1.1
See also: RFC2045, RFC2046, RFC2047, RFC2049, RFC4289 & RFC6838 for MIME specs. It's fun reading RFCs. You know you love it :-) |
||||
|
|