Comment 1 for bug 826250

Revision history for this message
serafim (milerbrane) wrote :

On your mails.php file is a error:
$headers .= "Content-type: text/html; charset=UTF-8\r\n";
$headers .= "From: ".$jk->name." <".$jk->admin_mail.">";
Before (=) there was (.) then i remove it and mails gets on inbox. Error was that headers are not show on from in reciver mail and automatic is spam or refused!
Right code:
$headers = "Content-type: text/html; charset=UTF-8\r\n";
$headers = "From: ".$jk->name." <".$jk->admin_mail.">";