Skip to content

Instantly share code, notes, and snippets.

@diogok
Created December 29, 2009 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogok/265366 to your computer and use it in GitHub Desktop.
Save diogok/265366 to your computer and use it in GitHub Desktop.
<?php
$mail = "email@gmail.com" ;
$header = "From: email@gmail.com\n" ;
$msg = "Mensagem" ;
$subject = "Assunto" ;
mail($mail,$subject,$msg,$header);
header("Location: thankyou.html");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment