Created
March 19, 2013 13:38
-
-
Save dodopok/5196151 to your computer and use it in GitHub Desktop.
Exemplo E-mail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class NfesController extends ArmazenamentoAppController{ | |
public $components = array( | |
'Emissor.NFePHP', | |
'Emissor.MailNFePHP', | |
); | |
public function enviaTeste(){ | |
$this->NFePHP->preparaNFePHP(); | |
$msg = 'Teste mensagem'; | |
$assunto = 'Teste mensagem'; | |
$to = '[email protected]'; | |
$this->MailNFePHP->sendCobranca($assunto,$to,$msg); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment