mirror of
https://github.com/anatolykopyl/file-directory.git
synced 2026-03-26 04:44:31 +00:00
13 lines
306 B
PHP
13 lines
306 B
PHP
<?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');
|
|
?>
|