Skip to content

Instantly share code, notes, and snippets.

@pastyrMisha
Last active December 20, 2017 20:35
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 pastyrMisha/6dfc007592e5b47a0e47bb6f411984f2 to your computer and use it in GitHub Desktop.
Save pastyrMisha/6dfc007592e5b47a0e47bb6f411984f2 to your computer and use it in GitHub Desktop.
Форма Email
<?php
$message = "Это самое простое сообщение в мире!";
$to = "skturner@yandex.ru";
$from = "skturnercz@gmail.com";
$subject = "Тема сообщения";
$subject = "=?utf-8?B?".base64_encode($subject)."?=";
$headers = "from: $from\r\nReply-to: $from\r\nContent-type: text/plain; charset=utf-8\r\n";
mail ($to, $subject, $message, $headers);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment