Last active
February 11, 2019 08:44
-
-
Save artemrogov/610841e2d6bd9733e326ba99fe513541 to your computer and use it in GitHub Desktop.
test-mail
This file contains hidden or 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
<?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