-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend.php
86 lines (79 loc) · 2.79 KB
/
send.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
82
83
84
85
86
<?php
// Файлы phpmailer
require 'phpmailer/PHPMailer.php';
require 'phpmailer/SMTP.php';
require 'phpmailer/Exception.php';
if (isset($_POST['email-send'])) {
$email = $_POST['email'];
$title = 'Новая подписка с сайта Universal Magazine';
$body = "
<h2>Новая подписка</h2>
<b>Email:</b> $email<br>
";
} elseif (isset($_POST['comment-send'])) {
$comment = $_POST['comment'];
$title = 'Новый комментарий с сайта Universal Magazine';
$body = "
<h2>Новый комментарий</h2>
<b>Комментарий:</b></br>$comment
";
} elseif (isset($_POST['modal-send'])) {
$theme = $_POST['theme'];
$message = $_POST['message'];
$email = $_POST['email'];
$title = 'Новая заявка с сайта Universal Magazine';
$body = "
<h2>Новая Заявка</h2>
<b>Тема:</b> $theme<br>
<b>Email:</b> $email<br><br>
<b>Сообщение:</b><br>$message<br>
";
} else {
$email = $_POST['email'];
$comment = $_POST['comment'];
$theme = $_POST['theme'];
$message = $_POST['message'];
$title = 'Ошибочное сообщение с сайта Universal Magazine';
$body = "
<h2>Ошибочное сообщение</h2>
<b>Тема:</b> $theme<br>
<b>Email:</b> $email<br><br>
<b>Сообщение:</b><br>$message<br><br>
<b>Комментарий:</b><br>$comment
";
}
// Настройки PHPMailer
$mail = new PHPMailer\PHPMailer\PHPMailer();
try {
$mail->isSMTP();
$mail->CharSet = 'UTF-8';
$mail->SMTPAuth = true;
//$mail->SMTPDebug = 2;
$mail->Debugoutput = function ($str, $level) {
$GLOBALS['status'][] = $str;
};
// Настройки вашей почты
$mail->Host = 'smtp.outlook.com'; // SMTP сервера вашей почты
$mail->Username = 'therealdeveloper@outlook.com'; // Логин на почте
$mail->Password = 'NA'; // Пароль на почте
$mail->SMTPSecure = 'ssl';
$mail->Port = 465;
$mail->setFrom('therealdeveloper@outlook.com', 'The Real Developer'); // Адрес самой почты и имя отправителя
// Получатель письма
$mail->addAddress('therealdeveloper@outlook.com');
// Отправка сообщения
$mail->isHTML(true);
$mail->Subject = $title;
$mail->Body = $body;
// Проверяем отправленность сообщения
if ($mail->send()) {
$result = 'success';
} else {
$result = 'error';
}
} catch (Exception $e) {
$result = 'error';
$status = "Сообщение не было отправлено. Причина ошибки: {$mail->ErrorInfo}";
}
// Отображение результата
header('Location: thankyou.html');