From f0b0f73bf36e66f8c76bf4910f49163e33575916 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Thu, 28 Nov 2002 13:01:37 +0000 Subject: [PATCH] Add Priority fields to email headers ... apparently may help with some agressive anti-spam systems on hotmail et al git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3142 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/emailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/emailer.php b/phpBB/includes/emailer.php index b2928a4a73..8e00d6df65 100755 --- a/phpBB/includes/emailer.php +++ b/phpBB/includes/emailer.php @@ -190,7 +190,7 @@ class emailer // // Add date and encoding type // - $universal_extra = "MIME-Version: 1.0\nContent-type: text/plain; charset=" . $this->encoding . "\nContent-transfer-encoding: 8bit\nDate: " . gmdate('D, d M Y H:i:s', time()) . " UT\n"; + $universal_extra = "MIME-Version: 1.0\nContent-type: text/plain; charset=" . $this->encoding . "\nContent-transfer-encoding: 8bit\nDate: " . gmdate('D, d M Y H:i:s', time()) . " UT\nX-Priority: 3\nX-MSMail-Priority: Normal\nX-Mailer: PHP\n"; $this->extra_headers = $universal_extra . trim($this->extra_headers); if ( $this->use_smtp )