2013-01-01, 01:14:41
around line 60 in reset password.php
in v3.12, the function calls sendmail() not mail().
And, it tries to send html email without setting the headers properly.
PHP Code:
// MAIL FIX START
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
exec_action('resetpw-success');
$status = mail($EMAIL,$subject,$message, $headers);
//MAIL FIX END
in v3.12, the function calls sendmail() not mail().
And, it tries to send html email without setting the headers properly.