EN
HTML - how to make email address clickable?
6 points
In this article, we're going to have a look at how to create email link in pure HTML that opens mail client after click operation.
Quick solition:
Use mailto:
prefix for your email address link.
Practical exmaple:
xxxxxxxxxx
1
2
<html>
3
<body>
4
<a href="mailto:my@email.com">my@email.com</a>
5
</body>
6
</html>