Initial commit

This commit is contained in:
2020-07-28 15:36:22 +03:00
commit add7d4cada
8 changed files with 191 additions and 0 deletions

13
sendpass.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$to = $_POST['inputEmail'];
$subject = 'the subject';
$message = 'hello';
$headers = array(
'From' => 'no-reply@radner.ru',
'X-Mailer' => 'PHP/' . phpversion()
);
mail($to, $subject, $message, $headers);
header('Location: index.php');
?>