From 905f8d7afa86a92d221d104345009c5c92875817 Mon Sep 17 00:00:00 2001 From: Luke Else <52086083+lukejelse04@users.noreply.github.com> Date: Fri, 30 Jul 2021 11:07:04 +0100 Subject: [PATCH] Updates to SMTP config --- assets/mail/contact_me.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/mail/contact_me.php b/assets/mail/contact_me.php index 4c397e6..c74f952 100644 --- a/assets/mail/contact_me.php +++ b/assets/mail/contact_me.php @@ -19,8 +19,8 @@ if ($_POST['name'] != null && $_POST['email'] != null && $_POST['message'] != nu $mail->isSMTP(); //Send using SMTP $mail->Host = 'in-v3.mailjet.com'; //Set the SMTP server to send through $mail->SMTPAuth = true; - $mail->Username = '81beb205b1d9a4190b9acb3fa94fc024'; - $mail->Password = 'ec979bd6ac550f5c141148665c0e4296'; + $mail->Username = ''; + $mail->Password = ''; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged $mail->Port = 587; //TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above