Skip to content

Instantly share code, notes, and snippets.

@zazk
Last active July 22, 2016 17:06
Show Gist options
  • Select an option

  • Save zazk/787eaa6ea832ca84b835d18dbaff89dd to your computer and use it in GitHub Desktop.

Select an option

Save zazk/787eaa6ea832ca84b835d18dbaff89dd to your computer and use it in GitHub Desktop.
Mailer Validation
<?php
if($mail->Send()){
echo '<p>Se ha enviado correctamente el email a '.$_POST['email'].'!</p>';
}else{
echo "Mailer Error: " . $mail->ErrorInfo;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment