Create a reply link in email message

UPASANA2
Mega Expert

How can we create a link in email message on clicking of which will generate a reply to a particular email id?

1 ACCEPTED SOLUTION

Earl L
Mega Guru

Do you just want to know how to create a mailto link? And if you don't know what a mailto link is, it's a hyperlink (i.e. an HTML tag) that has a link syntax that looks like this:


<a href="mailto:some.email@some.com">


So, if you're trying to have that be a dynamic value you might want to try writing a little JS function that will do that for you, and have it take the email address as the input parameter.

But if it's static then you can just hard code the correct mailto link syntax into your email template and you should be off to the races. Hope that makes sense. And more importantly, I hope I'm actually answering your question. 🙂

Earl


View solution in original post

2 REPLIES 2

Earl L
Mega Guru

Do you just want to know how to create a mailto link? And if you don't know what a mailto link is, it's a hyperlink (i.e. an HTML tag) that has a link syntax that looks like this:


<a href="mailto:some.email@some.com">


So, if you're trying to have that be a dynamic value you might want to try writing a little JS function that will do that for you, and have it take the email address as the input parameter.

But if it's static then you can just hard code the correct mailto link syntax into your email template and you should be off to the races. Hope that makes sense. And more importantly, I hope I'm actually answering your question. 🙂

Earl


UPASANA2
Mega Expert

Thanks, its working..