Page 1 of 1

Multiple Reply-to needed

Posted: Wed Apr 06, 2005 12:41 pm
by ckane
Hi All,

I have a mail function that works great however I need to have this work with multiple reply-to's. So it sends the email fine however when someone hit reply, it need to go back to 2 people. Take a look at my script and please let me know what needs to be added. Thanks

Code: Select all

$htmlHeaders = "";
	$htmlHeaders .= "From: XXXX <xxx@xxx.com>\r\n" ;
	$htmlHeaders .= "Reply-to: XXXX <xxx@xxx.com>\r\n";
	$htmlHeaders .= "MIME-Version: 1.0\r\n"; 
	$htmlHeaders .= "Content-type: text/html; charset=iso-8859-1\r\n";
	mail($rec, $sub, $mess, $htmlHeaders, "-f xxx@xxx.com");

Posted: Wed Apr 06, 2005 12:55 pm
by feyd
I don't think that's allowed in the standard. You can make the one person a carbon-copy (CC) person..

...

Posted: Wed Apr 06, 2005 4:31 pm
by Calimero
Use mail-client and rules to copy or forward that reply-message.

Should be a lot easier.