<?php
use PHPMailer\PHPMailer\PHPMailer;
// Файлы phpmailer
require 'phpmailer/src/PHPMailer.php';
require 'phpmailer/src/Exception.php';
// Настройки PHPMailer
$mail = new PHPMailer(true);
$mail->CharSet = 'UTF-8';
$mail->setLanguage('ru', 'phpmailer/language/');
$mail->isHTML(true);
// От кого письмо
$mail->setFrom('Marketing@informatsiya-modelyam.ru');
// Кому отправить
$mail->addAddress('Marketing@informatsiya-modelyam.ru');
// Тема письма
$mail->Subject = 'Анкета модели';
header('Location: /informatsiya-modelyam');
//Тело письма
if(trim(!empty($_POST['user_name']))){
$body.='<p><strong>ФИО Модели:</strong> '.$_POST['user_name'].'</p>';
}
if(trim(!empty($_POST['user_email']))){
$body.='<p><strong>Email модели:</strong> '.$_POST['user_email'].'</p>';
}
if(trim(!empty($_POST['user_phone']))){
$body.='<p><strong>Телефон модели: </strong> '.$_POST['user_phone'].'</p>';
}
if(trim(!empty($_POST['user_age']))){
$body.='<p><strong>Возраст модели:</strong> '.$_POST['user_age'].'</p>';
}
if(trim(!empty($_POST['user_procedure']))){
$body.='<p><strong>Процедура:</strong> '.$_POST['user_procedure'].'</p>';
}
if (!empty($_FILES['upload']['name'][0])) {
foreach ($_FILES['upload']['name'] as $key => $value) {
$out_files[] = array("name"=>$_FILES['upload']['name'][$key], "tmp_name" => $_FILES['upload']['tmp_name'][$key]);
}
$filesSend = true;
} else {
$filesSend = false;
}
if ($filesSend) {
foreach ($out_files as $k=>$v) {
$mail->AddAttachment($out_files[$k]['tmp_name'], $out_files[$k]['name']);
}
}
$mail->Body = $body;
$mail->AltBody = '';
// Отправляем
if(!$mail->send()) {
echo 'Ошибка';
} else {
header('location: /thank-you/index.php');
}
?>