From 678c53a8fbfdff5fe7171fb5829e242786826b87 Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sun, 17 Mar 2024 16:39:03 +0000 Subject: [PATCH] Reword SMTP test message to make it clear that messages are queued --- post/setting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post/setting.php b/post/setting.php index 78f93320..fa99eed1 100644 --- a/post/setting.php +++ b/post/setting.php @@ -184,10 +184,10 @@ if (isset($_POST['test_email_smtp'])) { $mail = addToMailQueue($mysqli, $data); if ($mail === true) { - $_SESSION['alert_message'] = "Test email sent successfully"; + $_SESSION['alert_message'] = "Test email queued successfully - Check Admin > Mail queue"; } else { $_SESSION['alert_type'] = "error"; - $_SESSION['alert_message'] = "Test email failed"; + $_SESSION['alert_message'] = "Failed to add test mail to queue"; } header("Location: " . $_SERVER["HTTP_REFERER"]);