Skip to content

Instantly share code, notes, and snippets.

@artemrogov
Last active February 11, 2019 08:44
Show Gist options
  • Save artemrogov/610841e2d6bd9733e326ba99fe513541 to your computer and use it in GitHub Desktop.
Save artemrogov/610841e2d6bd9733e326ba99fe513541 to your computer and use it in GitHub Desktop.
test-mail
<?php
$to = 'email address';
$subject = 'важная тема3434234';
$message = "hellofgdfgdfgfdddddddddddddddddddddd54645645645654";
$headers = array(
'From' => '[email protected]',
'Reply-To' => '[email protected]',
'X-Mailer' => 'PHP/' . phpversion()
);
mail($to, $subject, $message, $headers);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment