1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 20:25:57 +00:00

mail plugin: fix typo

This commit is contained in:
Andrew Dolgov
2014-08-06 10:47:09 +04:00
parent 6d194d8541
commit a6626ebd4c

View File

@@ -182,7 +182,8 @@ class Mail extends Plugin {
$mail = new ttrssMailer(); $mail = new ttrssMailer();
$mail->AddReplyTo(strip_tags($_REQUEST['from_email'], $_REQUEST['from_name'])); $mail->AddReplyTo(strip_tags($_REQUEST['from_email']),
strip_tags($_REQUEST['from_name']));
//$mail->AddAddress($_REQUEST['destination']); //$mail->AddAddress($_REQUEST['destination']);
$addresses = explode(';', $_REQUEST['destination']); $addresses = explode(';', $_REQUEST['destination']);
foreach($addresses as $nextaddr) foreach($addresses as $nextaddr)