Hi,
I use php mail() function to send my clients newsletter, however; i need to modify my header in order to look like this:
From: xxx Company
not:
From: some@email.com
when i use this header:
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/html; charset=iso-8859-1\n";
$headers .= "From: $name" . "<br />";
this is how it looks like:
From: xxx Company/'my ip server here'
I noticed this is happening because its not in an email format!!
Any help would be appreciated.
Thanks.