How to link email in HTML?

To build a link that opens the user's email client with a pre-filled email address, use the anchor () element in HTML and the mailto protocol. This is how you do it:

<a href="mailto:example@example.com">Send Email</a>

Something more with mailto were subject, body, CC, BCC etc. You need to separate with “&” and set all one by one.

Example :

<a href=""mailto:example@example.com?subject=Subject%20Text&body=Body%20Text&cc=cc@example.com&bcc=bcc@example.com"">Send Email</a>

Go from files to website in seconds.

Start a free trial for 7 days — no credit card required

Get Started for Free