in reply to Re^3: Losing eol character using MIME::Lite
in thread Losing eol character using MIME::Lite
Just a guess: As far as I remember, network line endings should generally be CR+LF. (See, for example, RFC5322.) When using "\n" on Unix, this generates just the LF, not CR+LF (unless MIME::Lite replaces "\n" with CR+LF). So Outlook may actually behave correct according to the letters of the RFC in refusing to accept anything but CR+LF as a line break. Yes, it's stupid, and I would expect nothing else from Outlook.
Try replacing "\n" with "\r\n" in the message body.
Alexander
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Losing eol character using MIME::Lite
by Laurent_R (Canon) on Dec 10, 2017 at 10:00 UTC | |
Re^5: Losing eol character using MIME::Lite
by cbeckley (Curate) on Dec 11, 2017 at 13:10 UTC | |
by Sinistral (Monsignor) on Dec 14, 2017 at 21:24 UTC |