Файл: version 2.0.5/demo-review-process.php
Строк: 13
<?php
if( isset($_POST['name']) )
{
$to = 'vokyvon@gmail.com'; // Replace with your email
$subject = 'Review from website'; // Replace with your $subject
$headers = 'From: ' . $_POST['email'] . "rn" . 'Reply-To: ' . $_POST['email'];
$message = 'Name: ' . $_POST['name'] . "n" .
'E-mail: ' . $_POST['email'] . "nn" .
'Quality of the product: ' . $_POST['quality'] . "n" .
'Reliability of the product: ' . $_POST['reliability'] . "n" .
'Overall rating: ' . $_POST['overall'] . "nn" .
'Review: ' . $_POST['review'];
mail($to, $subject, $message, $headers);
}
?>