diff options
author | rub <rub@piwigo.org> | 2007-02-12 06:09:05 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-02-12 06:09:05 +0000 |
commit | 62c1993adcfc257d98e47dc7efa8633209dbac3b (patch) | |
tree | 7b9c52ad8f30d0b2384b8c52d788da8372f0b6ad /include | |
parent | f02ef033adf044e22cc142123da640a9ec9bc67d (diff) |
add_index plugin cleanup
Fix reading html mail on webmail (like webmail free)
git-svn-id: http://piwigo.org/svn/trunk@1808 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_mail.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php index 81559ac80..f201cd32f 100644 --- a/include/functions_mail.inc.php +++ b/include/functions_mail.inc.php @@ -166,7 +166,8 @@ function pwg_mail($to, $from = '', $subject = 'PhpWebGallery', $infos = '', $for $headers = 'From: '.$from."\n"; $headers.= 'Reply-To: '.$from."\n"; $headers.= 'Content-Type: '.$email_format.';format=flowed;charset="'.$lang_info['charset'].'";'; - $headers.= 'reply-type=original'."\n"; + $headers.= 'reply-type=original'."\n";
+ $headers.= 'MIME-Version: 1.0'."\n";
if ($conf_mail['send_bcc_mail_webmaster']) { |