1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-02 13:57:11 +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

@@ -308,7 +308,7 @@
"If that wasn't you, just ignore this message. Thanks.";
$mailer = new Mailer();
$rc = $mailer->mail(["to" => $email,
$rc = $mailer->mail(["to_address" => $email,
"subject" => "Registration information for Tiny Tiny RSS",
"message" => $reg_text]);
@@ -322,7 +322,7 @@
"Email: $email\n";
$mailer = new Mailer();
$rc = $mailer->mail(["to" => REG_NOTIFY_ADDRESS,
$rc = $mailer->mail(["to_address" => REG_NOTIFY_ADDRESS,
"subject" => "Registration notice for Tiny Tiny RSS",
"message" => $reg_text]);