Having seen this (Drupal 6.2 PHP 4) on my test site, I try to install this module again on an another system (Drupal 6.2 and PHP 5.2.4-2ubuntu5.4), but got the same result : email was send by the unix user:
From: www-data
and not from the user specified in the site configuration:
Errors-To: michel@mail.org
Sender: michel@mail.org
Reply-To: michel@mail.org
From: michel@mail.org
Someone know why ?
Regards,
Michel
Comments
Comment #1
mhdg commentedCorrected by version 6.x-1.x-dev
in htmlmail.module:
function htmlmail_mail_alter(&$message) {
$message['headers']['Content-Type'] = 'text/html; charset=UTF-8';
// do not overwrite the header
//$message['headers'] = array(
// 'Content-Type' => 'text/html; charset=UTF-8;',
//);