From a9688f538f72e7d607dfd9812ce8a5c71ad21f4d Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 7 May 2004 03:25:04 +0000 Subject: [PATCH] Mailer handles precedence header --- lib/phpmailer/class.phpmailer.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/phpmailer/class.phpmailer.php b/lib/phpmailer/class.phpmailer.php index 6fba6f3192..4e6a7079af 100644 --- a/lib/phpmailer/class.phpmailer.php +++ b/lib/phpmailer/class.phpmailer.php @@ -79,6 +79,12 @@ class PHPMailer */ var $Subject = ""; + /** + * Sets the Precedence level of this email. "bulk" will prevent some bounces + * @var string + */ + var $Precedence = ""; + /** * Sets the Body of the message. This can be either an HTML or text body. * If HTML then run IsHTML(true). @@ -809,6 +815,10 @@ class PHPMailer $result .= $this->HeaderLine("X-Priority", $this->Priority); $result .= $this->HeaderLine("X-Mailer", "PHPMailer [version " . $this->Version . "]"); + if ($this->Precedence != "") { + $result .= $this->HeaderLine("Precedence", $this->Precedence); + } + if($this->ConfirmReadingTo != "") { $result .= $this->HeaderLine("Disposition-Notification-To", -- 2.39.5