1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:45:56 +00:00

mailer: split to/from name/addresses

This commit is contained in:
Andrew Dolgov
2018-11-22 16:36:10 +03:00
parent 57932e1837
commit 55bf4bc1d3
5 changed files with 19 additions and 11 deletions

View File

@@ -305,7 +305,8 @@ class Pref_Users extends Handler_Protected {
$mailer = new Mailer();
$rc = $mailer->mail(["to" => "$login <$email>",
$rc = $mailer->mail(["to_name" => $login,
"to_address" => $email,
"subject" => __("[tt-rss] Password change notification"),
"message" => $message]);