Changeset 5022


Ignore:
Timestamp:
09/02/11 08:15:25 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #2255 - campo "reply to" vazio - Alguns dominios rejeitam as msgs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/expressoMail1_2/inc/class.imap_functions.inc.php

    r5014 r5022  
    21822182                $this->add_recipients("cc", $ccaddress, &$mail); 
    21832183                $this->add_recipients("cco", $ccoaddress, &$mail); 
    2184                 $mail->AddReplyTo($replytoaddress); 
     2184                if ($replytoaddress !="") 
     2185                    { 
     2186                        $mail->AddReplyTo($replytoaddress); 
     2187                    } 
    21852188                $mail->Subject = $subject; 
    21862189                $mail->IsHTML( ( array_key_exists( 'type', $params ) && in_array( strtolower( $params[ 'type' ] ), array( 'html', 'plain' ) ) ) ? strtolower( $params[ 'type' ] ) != 'plain' : true ); 
Note: See TracChangeset for help on using the changeset viewer.