
Originally Posted by
ScallioXTX
What is the code that is sending the emails? Without code it's kind hard to determine what's wrong.
Hai Scallioxtx,
this is the header
Code:
$headers = 'From: mysite.com' . "\r\n" .
'Reply-To: activation@mysite.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n";
$headers .= 'Content-Transfer-Encoding: 8bit'. "\n";
$headers .= 'X-Priority: 3' . "\n";
$headers .= 'X-MSMail-Priority: Normal' . "\n";
Bookmarks