Cold Mailing Glossary letter h

How to add email as a link

To add an email as a link, you can use the HTML anchor tag (`<a>`) and specify the `mailto:` attribute with the email address. Here's an example:

```html

<a href="mailto:[email protected]">Send Email</a>

```

In this example, `[email protected]` is the email address you want to link. When the user clicks on the "Send Email" text, it will open their default email client with a new message addressed to `[email protected]`.

You can also add additional attributes to customize the link, such as adding a subject line or body text. Here's an example:

```html

<a href="mailto:[email protected]?subject=Hello&body=How are you?">Send Email</a>

```

In this example, the `subject` parameter sets the subject line of the email to "Hello," and the `body` parameter sets the body text to "How are you?". When the user clicks on the "Send Email" link, their default email client will open with a new message addressed to `[email protected]`, with the subject and body text already filled in.

Remember to replace `[email protected]` with the actual email address you want to use.