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";
\r\n), not just LF (\n). – Mike Dec 8 '10 at 16:27