Skip to content

Instantly share code, notes, and snippets.

@seriiserii825
Created June 4, 2017 16:18
Show Gist options
  • Save seriiserii825/c6ffa3b662c1e01bc127ee5204a5f815 to your computer and use it in GitHub Desktop.
Save seriiserii825/c6ffa3b662c1e01bc127ee5204a5f815 to your computer and use it in GitHub Desktop.
mail.php
$recepient = "agragregra@ya.ru";
$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