From e3abf15011add4da3003f2d282103e08d1f3e9e3 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Tue, 28 Jul 2020 12:13:40 -0600 Subject: [PATCH] change subject and body of test email --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 7e3f2f9..06fc6b0 100644 --- a/index.php +++ b/index.php @@ -61,8 +61,8 @@ if (isset($_POST) && !empty($_POST)){ } // send email IFF no NULL fields if ($usePort && $useEncryption && $recipient && $replyTo){ - $body = 'This is a test message from the AB-GROUP PHP Email Port Tester PHP script. You may ignore this message.'; - $subject = 'Test message from AB-GROUP Port Test Script'; + $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); $output .= $mailResult['debug']; }