<?php
header("Content-Type: text/html; charset=utf-8");
if($_SERVER["REQUEST_METHOD"] == "GET")
exit;
$email = "xxxxxxxxx@mail.ru";
$title = "Новый заказ. XXXXXX";
$from = 'XXXXXXXXX';
$text = 'Информация о заказе:
Товар: XXXXXXXXX (http://XXXXXXX.ru/)
Имя: '.@$_POST['name'].'
Телефон: '.@$_POST['phone'].'
Почта: '.@$_POST['email'].'
Время заказа: '.date("Y-m-d H:i:s").'
Форма: '.@$_POST['formochka'].'';
if(mail($email, $title, $text, "Content-type:text/plain; charset = utf-8\r\nFrom:$from"))
echo
"<html><head><title>Спасибо за заказ!</title></head><body><div style='margin: 150px auto; width: 300px;'></div></body></html>
<meta http-equiv='refresh' content='0; url=./success.html' />";
else
echo "<h2>Ошибка! Попробуйте ещё раз!</h2>";
?>