Changes between Version 5 and Version 6 of WF/EnviodeEmail


Ignore:
Timestamp:
12/06/07 16:10:05 (16 years ago)
Author:
viani
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WF/EnviodeEmail

    v5 v6  
    88'''Exemplo de Utilização:''' 
    99{{{ 
    10 $mail = wf_create_object('wf_mail'); 
     10$mail = $this->factory->getInstance('wf_mail'); 
    1111$mail->From = "eu@site.com"; 
    1212$mail->FromName = "Meu Nome"; 
     
    2323'''Exemplo Curto:''' 
    2424{{{ 
    25 $mail = wf_create_object('wf_mail'); 
     25$mail = $this->factory->getInstance('wf_mail'); 
    2626$mail->quickSend('eu@site.com', 'jose@site.com', 'assunto', 'minha mensagem'); 
    2727}}}