Occasionally I’ve seen code wrapping email messages to make sure a single line is no more than 72 characters long. Is there really need for this and what is this all about?
Occasionally I’ve seen code wrapping email messages to make sure a single line is
Share
To expand on Joe’s response, the 72-char limit basically allows for bodies to then be quoted, so it gives room for the additional chars added to a line, e.g.,
So giving an extra few chars allows the parapgraph formatting to be retained on 80-character terminals, for at least two levels, and potentially more depending on how the quote characters are added/used.