From b03e7df1594a9496e52529e889cb7223cfdc84d0 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Tue, 28 Jul 2020 12:39:25 -0600 Subject: [PATCH] add notation before log about settings being used --- index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/index.php b/index.php index 06fc6b0..bc52882 100644 --- a/index.php +++ b/index.php @@ -61,6 +61,7 @@ if (isset($_POST) && !empty($_POST)){ } // send email IFF no NULL fields if ($usePort && $useEncryption && $recipient && $replyTo){ + $output .= '<< using port: ' . $usePort . ' with encryption: ' . $useEncryption . ' >>
'; $body = 'This is a test message from the Simple PHPMailer Test Script. You may ignore this message.'; $subject = 'PHPMailer Test-Script Message'; $mailResult = sendEmail($SMTP['timeout'], $SMTP['hostname'], $usePort, $useEncryption, $SMTP['username'], $SMTP['password'], $recipient, $replyTo, $body, $subject);