There is an order form that you need to send by mail. Letters come to the mail hosting, and you need what would come on mail.ru. I tried to change the address of the mail and the letters do not come, there is nothing in the spam folders either.
In html hidden inputs:
<input type="hidden" name="project_name" value="3wit.ru"> <input type="hidden" name="admin_email" value="lianaza@mail.ru"> <input type="hidden" name="form_subject" value="Заявка на кровать"> code in mail.php:
$method = $_SERVER['REQUEST_METHOD']; //Script Foreach $c = true; if ( $method === 'POST' ) { $project_name = trim($_POST["project_name"]); $admin_email = trim($_POST["admin_email"]); $form_subject = trim($_POST["form_subject"]); foreach ( $_POST as $key => $value ) { if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) { $message .= " " . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . " <td style='padding: 30px; border: #e9e9e9 1px solid;'><b>$key</b></td> <td style='padding: 30px; border: #e9e9e9 1px solid;'>$value</td> </tr> "; } }} function adopt($text) { return '=?UTF-8?B?'.Base64_encode($text).'?='; } $headers = "MIME-Version: 1.0" . PHP_EOL . "Content-Type: text/html; charset=utf-8" . PHP_EOL . 'From: '.adopt($project_name).' <lianaza@mail.ru>' . PHP_EOL . 'Reply-To: lianaza@mail.ru' . PHP_EOL; mail($admin_email, adopt($form_subject), $message, $headers );
$admin_emailhow you get$admin_emailand other variables for writing - Alex