Changeset 6603 for sandbox/webservice


Ignore:
Timestamp:
06/25/12 11:35:32 (12 years ago)
Author:
niltonneto
Message:

Ticket #2507 - Corrigido problema no envio de mensagem como texto plano.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/webservice/api/rest/mail/SendResource.php

    r6489 r6603  
    1919                        $params['input_replyto']        = $this->getParam("msgReplyTo"); 
    2020                        $params['body']                         = $this->getParam("msgBody"); 
    21                         $params['type']                         = 'textplain'; 
     21                        $params['type']                         = $this->getParam("msgType") ? $this->getParam("msgType") : "plain"; 
    2222 
    2323                        $returncode = $this->getImap()->send_mail($params); 
Note: See TracChangeset for help on using the changeset viewer.