Vitaly_Iak
Создатель
- Регистрация
- 25 Окт 2017
- Сообщения
- 16
- Реакции
- 30
я проверяю следующим скриптом всегда работу php mail
Код:
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "mail@domain.ru";
$to = "email@mail.ru";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Email sent out";
?>