Lets say there is this link:
<a href="someemaillink@somedomain.com">someemaillink@somedomain.coml</a>
And when user clicks the link above, their email client pops open. How do i do that?
Use mailto:
<a href="mailto:someemaillink@somedomain.com">someemaillink@somedomain.coml</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.
use this, this will work
<a href="mailto:someemaillink@somedomain.com">someemaillink@somedomain.coml</a>
HTML has a syntax for this:
<a href="mailto:joe@example.com?subject=feedback" "email me">email me</a>
Nvm, i found it:
<a href="mailto:someemaillink@somedomain.com">someemaillink@somedomain.coml</a>