Skip to content

Instantly share code, notes, and snippets.

@dodopok
Created March 19, 2013 13:38
Show Gist options
  • Save dodopok/5196151 to your computer and use it in GitHub Desktop.
Save dodopok/5196151 to your computer and use it in GitHub Desktop.
Exemplo E-mail
<?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