Send Email

Any tips and tricks that has to with the ADDT that doesn't fit into one of the other categories
aletuba
Posts: 1
Joined: 2016-11-17 18:34

Send Email

Post by aletuba » 2016-11-17 18:36

Hi, how add "Replay-to" in Send Email?

User avatar
Fred
Site Admin
Posts: 491
Joined: 2010-02-15 12:10
Location: Armagh, Northern Ireland
Contact:

Re: Send Email

Post by Fred » 2016-11-18 09:39

Good question.
Never tried to specifically add a "Reply To" address.

What have you tried so far?

jlig
Posts: 35
Joined: 2010-07-09 16:17

Re: Send Email

Post by jlig » 2017-01-06 22:46

If using ColdFusion you do the following in the CFMAIL section:

Code: Select all

What if you want the reply address for this demo email promo to be different than your main email address supplied in the "from" attribute. This is when our old friend [b]cfmailParam [/b]comes into play. As well as being able to attach documents you can also change attributes of the email(the email header) with it. 

Below is a script with the new use of cfmailParam in it.

<cfmail to="mail@thebluefrogcompany.net" from="Thingy-Me-Jig<marketing@thingymejig.com>" subject="Brand new special offer" type="html">
    
   <!--- change the reply address --->
   <cfmailParam name="Reply-To" value="doNotReplyToThisEmail@thingymejig.com">

   Please check our new thingy-me-jig by visiting the site at http:/www.thingmejig.com

   Regards
   The Thingy-me-jig Team
</cfmail>


Read more: http://tutorial41.easycfm.com#ixzz4V1KCuISU

Post Reply