Example mailto linked

Here is an example of a mailto link:

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

This link will open the user's default email client with a new message addressed to [email protected].

You can also add additional parameters to the mailto link to specify the subject, body, and other details of the email. For example:

<a href="mailto:[email protected]?subject=Hello%20World&body=This%20is%20a%20test%20email">Send an email to [email protected]</a>

This link will open the email client with a new message addressed to [email protected], with the subject "Hello World" and the body "This is a test email".

Here are some common parameters you can use in a mailto link:

Note that the parameters should be URL-encoded, as shown in the example above. This is because the mailto protocol uses URL encoding to pass parameters to the email client.

Here are some more examples of mailto links with different parameters:

<a href="mailto:[email protected]?subject=Hello%20World&body=This%20is%20a%20test%20email&[email protected]">Send an email to [email protected]</a>

<a href="mailto:[email protected]?subject=Hello%20World&body=This%20is%20a%20test%20email&[email protected]&[email protected]">Send an email to [email protected]</a>

<a href="mailto:[email protected]?subject=Hello%20World&body=This%20is%20a%20test%20email&[email protected]">Send an email from [email protected] to [email protected]</a>