Сделал вот так:
Код:
|
<?php
$name = $_REQUEST['name'];
$phone = $_REQUEST['phone'];
$after = $_REQUEST['after'];
$before = $_REQUEST['before'];
$work = $_REQUEST['work'];
$email = $_REQUEST['email'];
$quest = $_REQUEST['quest'];
$headers= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html;charset=utf-8 \r\nFrom:$email";
$message = "<p>Заявка с сайта «RemKachestvo.Ru»</p>
\n<p><strong>Имя:</strong> $name</p>
\n<p><strong>Тел:</strong> $phone</p>
\n<p><strong>Дата начала работы:</strong> $after</p>
\n<p><strong>Дата окончания работы:</strong> $before</p>
\n<p><strong>Нужная услуга:</strong> $work</p>
\n<p><strong>E-mail:</strong> $email</p>
\n<p><strong>Вопрос:</strong> $quest</p>";
mail( "remkachestvo@mail.ru", "RemKachestvo.Ru",
$message, $headers );
header( "Location: http://remkachestvo.ru/send.html" );
?> |
И вроде как нормально работает..
Вот только теперь сообщения приходят сразу но не всегда.
Тоесть как я понял не все отсылаются...
Как это исправить?