Ignore:
Timestamp:
05/12/11 15:40:14 (13 years ago)
Author:
niltonneto
Message:

Ticket #1824 - Permitindo o envio de mail em texto puro.

File:
1 edited

Legend:

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

    r4177 r4366  
    21322132                $mail->AddReplyTo($replytoaddress); 
    21332133                $mail->Subject = $subject; 
    2134                 $mail->IsHTML($params['type'] != 'textplain'); 
     2134                $mail->IsHTML( ( array_key_exists( 'type', $params ) && in_array( strtolower( $params[ 'type' ] ), array( 'html', 'plain' ) ) ) ? strtolower( $params[ 'type' ] ) != 'plain' : true ); 
    21352135                $mail->Body = $body; 
    21362136 
Note: See TracChangeset for help on using the changeset viewer.