mail plugin: fix typo
This commit is contained in:
parent
6d194d8541
commit
a6626ebd4c
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue