I'm trying to send email with hebrew content/subject like so:

$to = 'email@email.com';
$subject = "איזה יום יפה היום"; 
$message = 'ממש יום יפה';

$headers = 'From: email@email.com' . "\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail($to, $subject, $message, $headers);

But what I get in the subject is more Klingon than modern Hebrew. The message itself comes out fine, it's just the subject that's all messed up.

What can I do? (I'm open to any hacks you got)

link|improve this question

Somewhere along the way, your character encoding has become seriously messed up. As far as I know, ISO-8859-1 doesn't even have any Hebrew characters in it! – Quentin Dec 20 '10 at 14:19
@David the message comes out ok, the problem is with the subject... – Gal Dec 20 '10 at 14:22
Related question: stackoverflow.com/questions/4389676/… – Gumbo Dec 20 '10 at 14:23
1  
'oH 'oHbe' tlhIngan – DampeS8N Dec 20 '10 at 14:26
feedback

1 Answer

up vote 4 down vote accepted

The Content-Type does only describe the message content but not the header. You need to apply the encoded-word encoding on the Subject value. See my answer on PHP email header subject encoding problem for further information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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