Skip to content

Instantly share code, notes, and snippets.

@pastyrMisha
Last active December 20, 2017 20:35
Show Gist options
  • 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 = "[email protected]";
$from = "[email protected]";
$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