which looks very messy to the recipient...
I recently found the solution and hope it works for you site owners having this email problem with webdate.
post to this thread if this helps you out.
open the file:
smartway/lib/mail.lib
find the following headers near the bottom:
- Code: Select all
$headers = "From: $sFrom\r\n".
"Reply-To: $sFrom\n".
"X-Mailer: $site_title\r\n";
if ($send_html_emails)
{
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
}
change those lines to look like the following:
- Code: Select all
$headers = "From: $sFrom\n".
"Reply-To: $sFrom\n".
"X-Mailer: $site_title\n";
if ($send_html_emails)
{
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\n";
}
this is the same code with the \r removed
this should get the html emails to display properly let me know how it works for you.
Paul
