Multiple Reply-to needed

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ckane
Forum Newbie
Posts: 1
Joined: Wed Apr 06, 2005 12:35 pm

Multiple Reply-to needed

Post 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");
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

I don't think that's allowed in the standard. You can make the one person a carbon-copy (CC) person..
User avatar
Calimero
Forum Contributor
Posts: 310
Joined: Thu Jan 22, 2004 6:54 pm
Location: Milky Way

...

Post by Calimero »

Use mail-client and rules to copy or forward that reply-message.

Should be a lot easier.
Post Reply