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.
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
А как сделать что бы отправлялось $site к примеру
$site = 'nulled';
$message = '$site'; не проходит![]()
$site = 'nulled.ws';
// some code
$to = 'nobody@example.com';
$subject = 'the subject';
$message = $site;
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
В одинарных кавычках переменные не обработываются$message = '$site'; не проходит
Как сделать отправку отчёта по почте ?
Типо, если что то там ) то скрипт отсылает письмо на мыло !
Как это реализовать ?