Forum Moderators: coopster

Message Too Old, No Replies

Mailing to hotmail

Invalid characters with mail() in hotmail

         

homeini

8:01 am on Jun 28, 2007 (gmt 0)

10+ Year Member



Hello,

I've problems mailing to hotmail with characters. When the mail arrive to gmail its appearance is good, but when it arrive to hotmail it don't show good the special characters.

First I was doing this:

mail("onemail@domain.com","España","tílde españa hotmail", "From: othermail@domain.com\r\nContent-Type: text/plain; charset=UTF-8;");

It doesn't work. But I read that hotmail have problems with UTF8 so i do this:

mail("onemail@domain.com","España","tílde españa hotmail", "From: othermail@domain.com\r\nContent-Type: text/plain; charset=ISO-8859-1;");

But it doesn't work too.

¿Some help please?

Habtom

8:22 am on Jun 28, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Try using mb_send_mail() [php.net] instead of mail.