From 79c50359203afef9c04824376368040139fc3402 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 26 Nov 2018 12:44:36 +0300 Subject: [PATCH] reset password: use updated mailer parameters properly --- classes/handler/public.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classes/handler/public.php b/classes/handler/public.php index cadb9873..531392c8 100755 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -794,7 +794,8 @@ class Handler_Public extends Handler { $mailer = new Mailer(); - $rc = $mailer->mail(["to" => "$login <$email>", + $rc = $mailer->mail(["to_name" => $login, + "to_address" => $email, "subject" => __("[tt-rss] Password reset request"), "message" => $message]); -- 2.39.2