I'm sending normal text email, but in Outlook all the carriage returns
are ignored. The text comes from MySQL database, and I've tried
str_replace("\r ", "\r\n", $dr['email_template ']);
I also tried sending header Content-type: text/plain but still no luck,
still the email comes through as one big line.
I'm sure this must be a common thing but I can't immediately find an
answer through Google.
Please can anyone help?
I'm using the standard mail() command to send.
are ignored. The text comes from MySQL database, and I've tried
str_replace("\r ", "\r\n", $dr['email_template ']);
I also tried sending header Content-type: text/plain but still no luck,
still the email comes through as one big line.
I'm sure this must be a common thing but I can't immediately find an
answer through Google.
Please can anyone help?
I'm using the standard mail() command to send.
Comment