I am sending an automated mail,written in Greek, from a php script. I tried:

 $headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain; charset=utf-8\r\n";
$headers .= "From: example@mail.com\r\n";
$headers .= "Reply-To: example@mail.com\r\n";
mail($to, $subject,$body, $headers) ;

The body and subject are in Greek. Hotmail is reading subject but not the body and gmail reads it well. I replaced utf-8 with iso-8859-7 (contains greek chars) and it works . 1) Any idea why it doesn't work with utf-8? 2) Also gmail is writing my server in the mail.. How can i prevent this from happening?

link|improve this question

43% accept rate
1  
Where is the body text coming from? Is it in UTF-8? – Juhana Oct 24 '11 at 18:05
3  
Don't build your own mime messages. use PHPMailer or Swiftmailer – Marc B Oct 24 '11 at 18:06
Yeah, show us the body. – middus Oct 24 '11 at 18:06
from a $body="mytext"; should i encode it in utf8? and how? – greek_no_money Oct 24 '11 at 18:07
Make sure the text editor you use is set to save files in Unicode format. – Juhana Oct 24 '11 at 18:09
show 1 more comment
feedback

1 Answer

All email headers, which includes the subject, need to be pure ASCII, you cannot use UTF-8 or other encodings directly in email headers. Some mail services may be able to detect other encodings and do the right thing, but it's not technically valid. Encode your headers using MIME encoding, see How to use special characters in recipients name when using PHP's mail function.

link|improve this answer
You may need to understand this also, when you use mb_internal_encoding() stackoverflow.com/questions/7501924/… – Diblo Dk Dec 28 '11 at 15:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.