Last active
December 21, 2015 22:59
-
-
Save rnarian/6379542 to your computer and use it in GitHub Desktop.
Testing html mails like a boss! Call: [email protected]
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 = $_GET['mail']; | |
$message = file_get_contents("mail.html"); | |
$header = "MIME-Version: 1.0\n"; | |
$header .= "Content-type: text/html; charset=utf-8\n"; | |
$header .= "From: Marian Friedmann <[email protected]>\n"; | |
mail($mail,"Mail Test", $message, $header); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment