mail plugin: fix typo

This commit is contained in:
Andrew Dolgov 2014-08-06 10:47:09 +04:00
parent 6d194d8541
commit a6626ebd4c
1 changed files with 2 additions and 1 deletions

View File

@ -182,7 +182,8 @@ class Mail extends Plugin {
$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']);
$addresses = explode(';', $_REQUEST['destination']);
foreach($addresses as $nextaddr)