This repository has been archived by the owner on Jan 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.php
47 lines (39 loc) · 1.98 KB
/
mail.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
<?php
$nodata = "nodata";
$win = array( 'title' => 'Заявка принята!',
'desc' => 'В бижайщее время с Вами свяжется менеджер.');
$crash = array( 'title' => 'Произошла ошибка :(',
'desc' => 'Повторите отправку позже или позвоните нам по телефону.' );
$post_names = array(
'bike_model' => 'Модель байка',
'parts' => 'Название запчасти или VIN',
'contacts' => 'Контактные данные',
'submit' => 'Сообщение с формы',
'type_outfit' => 'Тип экипировки или аксессуара',
'question' => 'Вопрос'
);
if(isset($_POST['submit'])) {$data_send['submit'] = $_POST['submit'];} else {$data_send['submit'] = $nodata;};
if(isset($_POST['bike_model'])) {$data_send['bike_model'] = $_POST['bike_model'];} else {$data_send['bike_model'] = $nodata;};
if(isset($_POST['parts'])) {$data_send['parts'] = $_POST['parts'];} else {$data_send['parts'] = $nodata;};
if(isset($_POST['type_outfit'])) {$data_send['type_outfit'] = $_POST['type_outfit'];} else {$data_send['type_outfit'] = $nodata;};
if(isset($_POST['question'])) {$data_send['question'] = $_POST['question'];} else {$data_send['question'] = $nodata;};
if(isset($_POST['contacts'])) {$data_send['contacts'] = $_POST['contacts'];} else {$data_send['contacts'] = $nodata;};
$e_body = '';
foreach ($data_send as $key => $value) {
if($value !== $nodata) {
$e_body = $e_body . $post_names[$key] . " : " . $value . "\n";
}
}
$e_body = $e_body . "\r\n\n";
$emailFrom = '[email protected]'; // От кого
$e_sendto = '[email protected]'; // Кому
$e_subject = 'Сообщение с Motoparts.me'; // Тема письма
if(mail($e_sendto, $e_subject, $e_body, "From: $emailFrom\r\nReply-To: $emailFrom\r\n"))
{
echo json_encode($win);
}
else
{
echo json_encode($crash);
}
?>