-
Notifications
You must be signed in to change notification settings - Fork 0
/
send.php
44 lines (36 loc) · 1.86 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
<?php
$userPhone = $_POST['userPhone'];
$userName = $_POST['userName'];
$userEmail = $_POST['userEmail'];
$userMessage = $_POST['userMessage'];
// Load Composer's autoloader
require 'phpmailer/PHPMailer.php';
require 'phpmailer/SMTP.php';
require 'phpmailer/Exception.php';
// Instantiation and passing `true` enables exceptions
$mail = new PHPMailer\PHPMailer\PHPMailer();
try {
//Server settings
$mail->SMTPDebug = 0; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'smtp.gmail.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '[email protected]'; // SMTP username
$mail->Password = ${{ MAIL }}; // SMTP password
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` also accepted
$mail->Port = 465; // TCP port to connect to
//Recipients
$mail->setFrom('[email protected]', Василий);
$mail->addAddress('[email protected]'); // Add a recipient
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Новая заявка с сайта';
$mail->Body = "Имя пользователя: ${userName}, Его телефон: ${userPhone}, email: -${userEmail}, сообщение: ${userMessage}%";
if ($mail->send()) {
echo "ok";
} else {
echo "Письмо не отправлено, есть ошибка. Код ошибки: {$mail->ErrorInfo}";
}
} catch (Exception $e) {
echo "Письмо не отправлено, есть ошибка. Код ошибки: {$mail->ErrorInfo}";
}