Skip to content

Instantly share code, notes, and snippets.

@deivisonarthur
Created July 19, 2012 19:43
Show Gist options
  • Save deivisonarthur/3146305 to your computer and use it in GitHub Desktop.
Save deivisonarthur/3146305 to your computer and use it in GitHub Desktop.
Envio de email pelo Magento
<?php
$mail = new Zend_Mail();
//$mail -> setBodyText( $MensagemEmHtml );
$mail -> setBodyHtml( $MensagemEmHtml );
$mail -> setFrom( "[email protected]", "Atendimento seusite" ); //Quem esta enviando
$mail -> addTo( "[email protected]", "Atendimento seusite" ); //Quem irá receber
$mail -> setSubject( "Obrigado por se cadastrar em nossa Newsletter" );
$mail -> send();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment