/
MineDev
/
test-portfolio
Обзор
Документация
Войти
/
MineDev
/
test-portfolio
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
devemail.php
79 строк
2 KB
Mine Dev
some commit for my old test portfolio project
10 сен 2024, 17:39
10 сен 2024, 17:39
6c2f24e
Код
Авторство
О чём код?
<?php $name = $_POST["name"]; $email = $_POST["email"]; $link = $_POST["link"]; $message = $_POST["message"]; require "vendor/autoload.php"; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; $mail = new PHPMailer(true); // $mail->SMTPDebug = SMTP::DEBUG_SERVER; $mail->isSMTP(); $mail->SMTPAuth = true; $mail->CharSet = 'UTF=8'; $mail->isHTML(true); $mail->Host = "smtp.gmail.com"; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; $mail->Username = "csglobaloffensiveupgrade@gmail.com"; $mail->Password = "arst vrdm ojdh atyv"; $mail->setFrom($email, "MineDEV"); $mail->addAddress("$email", "$name"); $mail->Subject = "REPLY FROM PERSONAL"; $mail->Body = "<div style=' font-family: system-ui; margin: 0 auto; max-width: 560px; padding: 15px 30px; background-color: white; border-radius: 20px; transition: 0.3s; text-align: left; border: 1px solid rgba(180,198,204,0.66); border-radius: 17px; border-bottom: none; border-radius: 16px 16px 0 0; '> <img src='https://i.yapx.cc/XPE0i.png' alt='logo' class='logo__item'> <p style='color: black; font-size: 24px; '>Dear <b>$name</b>, I received a message asking for help with your website (<span style='text-decoration: underline'>$link</span>). I will contact you in a while. Best Wishes!</p> <hr style=' border: 1px black solid; width: 100%;'> <p style='font-size: 24px; font-weight: bold; color: black; '>Philip Polevich</p> <p style=' color: #bababd; '>Software Engineer</p> </div> </div> <div style=' font-family: system-ui; margin: 0 auto; max-width: 560px; padding: 15px 30px; background-color: black; border-radius: 20px; transition: 0.3s; text-align: left; border: 1px solid rgba(180,198,204,0.66); border-top: none; border-radius: 0 0 16px 16px; '> <p style='color: white; font-size: 16px; margin: 0px'>Personal <br> Created By <b>MineDev</b></p> </div> "; $mail->send();