What's the proper method of adding multiple "reply-to" addresses with
cfmail?
I've tried a couple of things:
<cfmail
to="#req.emailTO#"
from="[email protected]"
replyto="[email protected]<cfif
len(form.additionalreplyto)>,#form.additionalreplyto#</cfif>"
failto="[email protected]"
type="html"
subject="#form.emailSUBJECT#"
server=someserver.com">
Also tried using cfmailparam:
<cfmailparam name="Reply-To"value="[email protected]<cfif
len(form.additionalreplyto)>,#form.additionalreplyto#</cfif>">
or TWO cfmailparam tags:
<cfmailparam name="Reply-To"value="[email protected]">
<cfif len(form.additionalreplyto)><cfmailparam
name="Reply-To"value="#form.additionalreplyto#"></cfif>
None of these send an email that will go to both addresses when you hit
reply. Totally confused at this point.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive:
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347742
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm