How to code in html where LINK replies to your email?
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.
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.
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.
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