Answers for "html open email on click"

5

html email links

<a href="mailto:[email protected]"> Email_id </a>
Posted by: Guest on April-30-2020
1

button email html

<form action="mailto:[email protected]"method="post"enctype="text/plain">
    <input class="btn" type="submit" value="Submit">
</form>
Posted by: Guest on July-14-2021
13

html email link

<!-- Those percent twenty things be HTML Encoded spaces old bean, true magic. Not that Dynamo nonsense -->
<a href="mailto:[email protected]?Subject=Summat%20or%20Other&body=I%20Have%20been%20for%20a%20massive%20poo">Sendeth This Mail</a>
Posted by: Guest on February-24-2020
0

html email button

<button onclick= "document.location =  'mailto:[email protected]'"">mail me
 </button>
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language