Created
June 4, 2017 16:18
-
-
Save seriiserii825/c6ffa3b662c1e01bc127ee5204a5f815 to your computer and use it in GitHub Desktop.
mail.php
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
$recepient = "[email protected]"; | |
$sitename = "Название сайта"; | |
$name = trim($_POST["name"]); | |
$phone = trim($_POST["phone"]); | |
$text = trim($_POST["text"]); | |
$message = "Имя: $name \nТелефон: $phone \nТекст: $text"; | |
$pagetitle = "Новая заявка с сайта \"$sitename\""; | |
mail($recepient, $pagetitle, $message, "Content-type: text/plain; charset=\"utf-8\"\n From: $recepient"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment