programming-examples/html/_Basics/Creating a mailto link - A link that sends an e-mail.html
2019-11-15 12:59:38 +01:00

12 lines
421 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML email link</title>
</head>
<body>
<p>This is an email link:
<a href="mailto:someone@mail.com?Subject=Test%20Mail">Send Mail</a>
</p>
<p><strong>Note:</strong> Spaces between words should be replaced by %20 to ensure that the browser will display the text correctly.</p>
</body>
</html>