Created
July 19, 2012 19:43
-
-
Save deivisonarthur/3146305 to your computer and use it in GitHub Desktop.
Envio de email pelo Magento
This file contains 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 | |
$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