diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_mail.inc.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php index 30a288278..466cf921c 100644 --- a/include/functions_mail.inc.php +++ b/include/functions_mail.inc.php @@ -126,7 +126,10 @@ function pwg_mail($to, $from = '', $subject = 'PhpWebGallery', $infos = '') $headers = 'From: '.$from."\n"; $headers.= 'Reply-To: '.$from."\n"; - + $headers.= 'Reply-To: '.$from."\n"; + $headers.= 'Content-Type: text/plain;format=flowed;charset="'.$lang_info['charset'].'";'; + $headers.= 'reply-type=original'."\n"; + if ($conf_mail['send_bcc_mail_webmaster']) { $headers.= 'Bcc: '.$conf_mail['formated_email_webmaster']."\n"; |