Ignore:
Timestamp:
01/15/09 19:06:49 (15 years ago)
Author:
eduardoalex
Message:

Ticket #401

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.phpmailer.php

    r504 r614  
    2929     */ 
    3030    var $Priority          = 3; 
     31        /** 
     32         * Email Importance. 
     33         */ 
     34        var $Importance        = ""; 
    3135 
    3236    /** 
     
    231235    ///////////////////////////////////////////////// 
    232236 
     237        function isImportant() { 
     238                $this->Importance = "High"; 
     239        } 
     240         
    233241    /** 
    234242     * Sets message type to HTML.   
     
    860868        $result .= sprintf("Message-ID: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE); 
    861869        $result .= $this->HeaderLine("X-Priority", $this->Priority); 
     870        $result .= $this->HeaderLine("Importance", $this->Importance); 
    862871        $result .= $this->HeaderLine("X-Mailer", "ExpressoMail [version " . $this->Version . "]"); 
    863872         
Note: See TracChangeset for help on using the changeset viewer.