diff --git a/include/class.email.php b/include/class.email.php
index e5ebabf40eb1c9a2f8c52ec5d0a6e8917b53737b..fc6f9f8f5535b4882b72b82107d90620960eb946 100644
--- a/include/class.email.php
+++ b/include/class.email.php
@@ -160,7 +160,7 @@ class Email {
     }
 
     function sendAlert($to, $subject, $message, $attachments=null, $options=array()) {
-        $options+= array('bulk' => true);
+        $options+= array('notice' => true);
         return $this->send($to, $subject, $message, $attachments, $options);
     }
 
diff --git a/include/class.mailer.php b/include/class.mailer.php
index f3aa6e43ea9c5f0d8debcf0aaee1e29824d5fa2c..2699df4ff17c31fefd5f323d567fcb463bd285d6 100644
--- a/include/class.mailer.php
+++ b/include/class.mailer.php
@@ -113,19 +113,26 @@ class Mailer {
                 'Return-Path' => $this->getEmail()->getEmail(),
                );
 
-        //Set bulk/auto-response headers.
-        if($options && ($options['autoreply'] or $options['bulk'])) {
+
+        //Bulk.
+        if (isset($options['bulk']) && $options['bulk'])
+            $headers+= array('Precedence' => 'bulk');
+
+        //Auto-reply - mark as autoreply and supress all auto-replies
+        if (isset($options['autoreply']) && $options['autoreply']) {
             $headers+= array(
+                    'Precedence' => 'auto_reply',
                     'X-Autoreply' => 'yes',
-                    'X-Auto-Response-Suppress' => 'ALL, AutoReply',
+                    'X-Auto-Response-Suppress' => 'DR, RN, OOF, AutoReply',
                     'Auto-Submitted' => 'auto-replied');
-
-            if($options['bulk'])
-                $headers+= array('Precedence' => 'bulk');
-            else
-                $headers+= array('Precedence' => 'auto_reply');
         }
 
+        //Notice (sort of automated - but we don't want auto-replies back
+        if (isset($options['notice']) && $options['notice'])
+            $headers+= array(
+                    'X-Auto-Response-Suppress' => 'OOF, AutoReply',
+                    'Auto-Submitted' => 'auto-generated');
+
         if ($options) {
             if (isset($options['inreplyto']) && $options['inreplyto'])
                 $headers += array('In-Reply-To' => $options['inreplyto']);