-
Notifications
You must be signed in to change notification settings - Fork 0
/
postmaster.php
81 lines (76 loc) · 3.5 KB
/
postmaster.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
$EMAIL = 'dust_@inbox.ru'; // Ваш e-mail на который будут приходить заявки
$FROM = 'mail@mail.ru'; // e-mail отправителя (иногда требуется указать разрешенный настройками e-mail)
$REPLY = 'noreplay@mail.ru'; // e-mail для ответа
$PRIORITY = false; // пометить как важное
switch (@$_POST['action']) { // рассматриваем варианты разных значений поля action
case 'express_oreder':
sendmail("Заказ с сайта", render(
'<div><b>Имя:</b> '.stripinput($_POST['name']).'</div>'.
'<div><b>Телефон:</b> '.stripinput($_POST['tel']).'</div>'.
'<div><b>Адрес:</b> '.stripinput($_POST['descr']).'</div>'.
'<div><b>Способ доставки:</b> '.stripinput($_POST['list']).'</div>'
),$EMAIL,$FROM,$REPLY);
exit('200');
break;
case 'product_order':
sendmail("Заказ с сайта", render(
'<div><b>Имя:</b> '.stripinput($_POST['name']).'</div>'.
'<div><b>Телефон:</b> '.stripinput($_POST['tel']).'</div>'.
'<div><b>Почта:</b> '.stripinput($_POST['email']).'</div>'.
'<div><b>Цвет:</b> '.stripinput($_POST['color']).'</div>'.
'<div><b>Количество:</b> '.stripinput($_POST['count']).'</div>'.
'<div><b>Адрес:</b> '.stripinput($_POST['descr']).'</div>'.
'<div><b>Товар:</b> '.stripinput($_POST['product']).'</div>'.
'<div><b>Способ доставки:</b> '.stripinput($_POST['list']).'</div>'
),$EMAIL,$FROM,$REPLY);
exit('200');
break;
default:
sendmail("Заказ с сайта", render(
'<div><b>Имя:</b> '.stripinput($_POST['name']).'</div>'.
'<div><b>Телефон:</b> '.stripinput($_POST['tel']).'</div>'.
'<div><b>Продукт:</b> '.stripinput($_POST['product']).'</div>'
),$EMAIL,$FROM,$REPLY);
exit('200');
break;
}
header("HTTP/1.0 404 Not Found");
function stripinput($_sText) {
if (ini_get('magic_quotes_gpc')) $_sText = stripslashes($_sText);
$search = array("\"", "'", "\\", '\"', "\'", "<", ">", " ");
$replace = array(""", "'", "\", """, "'", "<", ">", " ");
$_sText = str_replace($search, $replace, $_sText);
return $_sText;
}
function sendmail($_sSubject, $_sMessage, $_sEmail, $_sFrom, $_sReply, $_bPriority=false){
$subject = "=?utf-8?b?" . base64_encode($_sSubject) . "?=";
$headers = "From: $_sFrom\r\n";
$headers .= "Reply-To: $_sReply\r\n";
$headers .= "MIME-Version: 1.0\r\n";
if($_bPriority){
$headers .= "X-Priority: 1 (Highest)\n";
$headers .= "X-MSMail-Priority: High\n";
$headers .= "Importance: High\n";
}
$headers .= "Content-type: text/html; charset=utf-8\r\n";
return mail($_sEmail, $subject, $_sMessage, $headers);
}
function render($_sBody){
return '<html>
<head>
<style type="text/css">
body {margin:10px;background:#ffffff;color:#000000;font-size:10pt;font-family:Tahoma}
div {font-size:10pt;font-family:Tahoma}
.header {padding-bottom:20px}
a {color: #003399!important;text-decoration:underline;}
</style>
</head>
<body>
<div class="body">
'.$_sBody.'
</div>
</body>
</html>';
}
?>