Lets say there is this link:
<a href="[email protected]">[email protected]</a>
And when user clicks the link above, their email client pops open. How do i do that?
Lets say there is this link:
<a href="[email protected]">[email protected]</a>
And when user clicks the link above, their email client pops open. How do i do that?
Use mailto:
<a href="mailto:[email protected]">[email protected]</a>
But consider using a method that will not allow the address to be read by bots to send spam to. That is, if your usage is public.
HTML has a syntax for this:
<a href="mailto:[email protected]?subject=feedback" "email me">email me</a>