I have a problem with my php script sending email to users.

There is some problem with the encoding of the email as When the email arrives to email account the subject line($subject) has encoding problems as has characters like a^£? added to the end of my subject text? The email message content itself is fine just the subject line?

I have searched all over but cant find answer

This is my header using charset=utf-8 content-type-encoding: 8bit but I seem to be missing something as my subject line keeps added these weird encoding chars to end

//set all necessary headers
$headers = "From: $sender_name<$from>\n";
$headers .= "Reply-To: $sender_name<$from>\n";
$headers .= "X-Sender: $sender_name<$from>\n";
$headers .= "X-Mailer: PHP4\n"; //mailer
$headers .= "X-Priority: 3\n"; //1 UrgentMessage, 3 Normal
$headers .= "MIME-Version: 1.0\n";
$headers .= "X-MSMail-Priority: High\n";
$headers .= "Importance: 3\n";
$headers .= "Date: $date\n";
$headers .= "Delivered-to: $to\n";
$headers .= "Return-Path: $sender_name<$from>\n";
$headers .= "Envelope-from: $sender_name<$from>\n";
$headers .= "Content-Transfer-Encoding: 8bit\n";
$headers .= "Content-Type: text/plain; charset=UTF-8\n";
link|improve this question

3  
Have you thought about using phpmailer.worxware.com this will save you loads of hassle. – Ashley Dec 8 '10 at 16:24
In addition to the provided answers, note that according to the docs, you are supposed to separate multiple headers with CRLF (\r\n), not just LF (\n). – Mike Dec 8 '10 at 16:27
feedback

4 Answers

up vote 5 down vote accepted

The specified character encoding in Content-Type does only describe the character encoding of the message body but not the header. You need to use the encoded-word syntax with either the quoted-printable encoding or the Base64 encoding:

encoded-word = "=?" charset "?" encoding "?" encoded-text "?="

You can use imap_8bit for the quoted-printable encoding and base64_encode for the Base64 encoding:

"Subject: =?UTF-8?B?".base64_encode($subject)."?="
"Subject: =?UTF-8?Q?".imap_8bit($subject)."?="
link|improve this answer
gumbo, I dont understand the difference between base64 or imap_8bit? When should I use one or other? would it be like this : $subject = '=?UTF-8?B?'.base64_encode($subject).'?=this is the subject'; or for I not need the '?=' where subject text goes? – daza166 Dec 8 '10 at 16:55
@user535256: No, the actual subject needs to be encoded with one of the encodings. Which one you pick is your decision. Quoted-printable is quite more readable as most of the printable ASCII characters are retained; but it will take more space if your subjects are likely to contain a lot of non-ASCII characters as each byte will be replaced by one three byte sequence of =xx. – Gumbo Dec 8 '10 at 17:01
feedback

try to do this way:

$headers= <<<TTTTTTTTTTTT
From: Whatever <info@example.com>
To: {$to}
Bcc: {$bccVar}
MIME-Version: 1.0
/*
  add what you want
*/
Content-Type: text/html;
TTTTTTTTTTTT;
//let's mail it
mail($to, $subject, $message, $headers)
link|improve this answer
feedback

mb_encode_mimeheader() for UTF-8 strings can be useful here.

link|improve this answer
feedback

Some web email clients will display the email in ISO-8859-1 instead of UTF-8, so it's better to send the emails in ISO-8859-1 encoding and use htmlentities() if necessary.

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.