I'm pretty sure that reply-to has to be zero or one addresses because that's
just the way email works. Or, I was before I read this question anyway. What
happens if you do this...?
<cfmail
to="#req.emailTO#"
from="[email protected]"
replyto="[email protected],[email protected]"
failto="[email protected]"
type="html"
subject="#form.emailSUBJECT#"
server=someserver.com">
On Tue, Sep 27, 2011 at 8:34 AM, Les Mizzell <[email protected]> wrote:
>
> 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:347743
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm