0
How do I write the link for email us
href="" what should I write between "" to allow users to email me
2 Réponses
+ 3
If you're trying to open the default mail app to have the user send an email you can use the mailto: call in your href. You can also append to the subject, body etc if needed.
<a href="mailto:address@site.com">email me</a>
https://www.w3schools.com/tags/tag_address.asp
+ 2
Emailing someone cannot be achieved via html . You have to use php mail script , which is pretty easy to learn if you have a little bit of knowledge on php.