MyBB Community Forums

Full Version: Email Header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there,
just a minor issue I'm facing; I've noticed that whenever I send HTML based emails through the my_mail function, I always get a duplicate entry for 'Content-Transfer-Encoding: 8bit'.


Quote:Content-Transfer-Encoding: 8bit
X-Priority: 3
X-Mailer: MyBB
MIME-Version: 1.0
Content-Type: text/html; charset="utf-8"
Content-Transfer-Encoding: 8bit


<html xmlns="http://www.w3.org/1999/xhtml">
<head...


Here are my parameters:

my_mail($user_email, 
'Subject', 
$email_message, 
$from="", 
$charset="", 
$headers="", 
$keep_alive=false, 
$format="html", 
$message_text="", 
$return_email=""
);


Any help?