Updated SMTP Credentials

This commit is contained in:
Luke Else 2021-10-29 22:31:07 +01:00 committed by GitHub
parent 414eaa10f6
commit fa568ef10c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,8 +38,8 @@ if ($_POST['name'] != null && $_POST['email'] != null && $_POST['phone'] && $_PO
$mail->isSMTP(); //Send using SMTP $mail->isSMTP(); //Send using SMTP
$mail->Host = 'in-v3.mailjet.com'; //Set the SMTP server to send through $mail->Host = 'in-v3.mailjet.com'; //Set the SMTP server to send through
$mail->SMTPAuth = true; $mail->SMTPAuth = true;
$mail->Username = '81beb205b1d9a4190b9acb3fa94fc024'; $mail->Username = '';
$mail->Password = 'ec979bd6ac550f5c141148665c0e4296'; $mail->Password = '';
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged $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 $mail->Port = 587; //TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above