Quote:
Originally Posted by mmm84
I have installed the newsletter successfully and tried to test it. Everything worked, so I'm a happy man. However, the confirmation email that is sent (to a hotmail account) shows all the html tags... Have any idea why? This is the only email that does that. Thanks for your help! 
|
I found the solution in the page "function.php"
you need to add this lines here.
// Headers
$header = "From: Newsletter <".$mittente.">\r\n";
$header .= "MIME-version: 1.0\n";
$header .= "Content-type: text/html; charset= iso-8859-1\n";
/*
Header aggiuntivi
*******************************************
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-type:text/html; charset=iso-8859-1\r\n";
*******************************************
$header .= "To: ".$nome." <".$mail.">\r\n";
$header .= "Reply-To: ".$mittente."\r\n";
$header .= "Cc:
cc@example.it\r\n";
$header .= "Bcc:
bcc@example.it\r\n";
*/
If you do that, than you will NOT see the HTML Tags in your email!