aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/notification.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/notification.php')
-rw-r--r--engine/lib/notification.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/engine/lib/notification.php b/engine/lib/notification.php
index c12cf65ce..abd3fbb55 100644
--- a/engine/lib/notification.php
+++ b/engine/lib/notification.php
@@ -259,8 +259,12 @@
($CONFIG->broken_mta)
)
$header_eol = "\n"; // Allow non-RFC 2822 mail headers to support some broken MTAs
-
- $headers = "From: \"$sitename\" <$from>{$header_eol}"
+
+ $from_email = "\"$sitename\" <$from>";
+ if (strcasecmp(substr(PHP_OS, 0 , 3), 'WIN'))
+ $from_email = "$from"; // Windows is somewhat broken, so we use a different format from header
+
+ $headers = "From: $from_email{$header_eol}"
. "Content-Type: text/plain; charset=UTF-8; format=flowed{$header_eol}"
. "MIME-Version: 1.0{$header_eol}"
. "Content-Transfer-Encoding: 8bit{$header_eol}";