How to code in html where LINK replies to your email?

Asked By 10 points N/A Posted on -
qa-featured

I need to have a link inside my email, once clicked it will directly leads to my email with a subject of “Unsubscribe”.

Does anyone know how to do this?

Please suggest.

SHARE
Best Answer by Morcelo Toldelo
Best Answer
Best Answer
Answered By 10 points N/A #103209

How to code in html where LINK replies to your email?

qa-featured

I think you want to perform this on your email marketing or some other emailing process. Then it may be that you send email in html format. I know to implement a link in an email, once clicked it will directly lead to your email with a subject of “Unsubscribe”.

Just implement this code on your html message, on the part where you would like to show the unsubscribe link: <a href="mailto:[email protected]?subject=Unsubscribe">Unsubscribe</a> .

Please replace the [email protected] with your email address on which you want to get reply from others.

I hope it will work for you.

Have a nice emailing experience.

Answered By 0 points N/A #103210

How to code in html where LINK replies to your email?

qa-featured

 

Hi Leal,

The above mentioned way is very efficient. But I am giving you a easy solution.

Please try this only once.

<a href="http://yoursiteunsubscribelink" target="_blank">YOURSITE</a>  

Thanks

 

Related Questions