How to Create an Email Link That Sends a Response

By Editorial Team

Updated May 12, 2020

How to Create an Email Link That Sends a Response
i Luis Alvarez/DigitalVision/GettyImages

If you use the Internet frequently, you may have noticed links that, instead of opening up a web page, open a “Compose” window in your email client. One use for this process is to enable someone to click a link that sends a pre-formatted email response. This is done with a simple piece of HTML coding, similar to how you might link a website.

Copy and paste the following code into the email where you want to response link to go: <p> <a href="mailto:XXXXX?Subject=YYYYY&Body=ZZZZZ"> MYREPLYTEXT</a> </p>

i S.H.

Replace “XXXXX” with your email address (for instance: “me@mysite.com”).

i S.H.

Replace “YYYYY” with the subject you wish the response email to have (for instance: “Re: Meeting”).

i S.H.

Replace “ZZZZZ” with the text you wish to place in the body of the email (for instance: “I got your message!”). If you do not wish to have anything automatically appear in the body, delete the following from the code: &Body=ZZZZZ.

i S.H.

Replace “MYREPLYTEXT” with the text you want to appear in the email you send (for instance: “Click here to reply.”).

i S.H.

Send the email.

×