Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$mail_sent = mail("user_mail@mail.ru",
"Php apache",
"Hello\nThis is automategenerate",
join("\r\n",
array("From: [email]webmaster@mail.ru[/email]",
"Reply-To: [email]webmaster@mail.ru[/email]",
"X-Mailer: PHP/".phpversion()
)
));
echo $mail_sent ? "Mail sent" : "Mail failed";