This topic is locked

Reply-To Multiple Emails

5/31/2013 1:41:15 PM
PHPRunner General questions
S
stiven author

Hello,
Does anyone know if there is a way to have the Reply-To to be more than one email address? when I try to put more than one email address it doesn't work
thanks for your help.



$email = $data['is_email'];

$from = $_SESSION['FirstName'].' '.$_SESSION['LastName']. '<'.$_SESSION['UserID'].'>';

$subject = "RE: ". $data['client_name'] . " [NEW CASE]";
$ret=runner_mail(array('to' => $email, 'bcc' => $bcc, 'subject' => $subject, 'replyTo' => "email1@test.com,email2@test.com", 'htmlbody' => $msg, 'from'=>$from));
Sergey Kornilov admin 5/31/2013

I don't think it's possible at all due to the way how email works in general.

S
stiven author 5/31/2013



I don't think it's possible at all due to the way how email works in general.


ok thanks for the reply

S
simonedan 6/1/2013



Hello,
Does anyone know if there is a way to have the Reply-To to be more than one email address? when I try to put more than one email address it doesn't work
thanks for your help.



$email = $data['is_email'];

$from = $_SESSION['FirstName'].' '.$_SESSION['LastName']. '<'.$_SESSION['UserID'].'>';

$subject = "RE: ". $data['client_name'] . " [NEW CASE]";
$ret=runner_mail(array('to' => $email, 'bcc' => $bcc, 'subject' => $subject, 'replyTo' => "email1@test.com,email2@test.com", 'htmlbody' => $msg, 'from'=>$from));