Answers for "open email on click html"

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
1

email button html

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

html open email program

<a href= "mailto:[email protected]">Send Email</a>
Posted by: Guest on August-15-2020
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 open email program

<a href = "mailto:[email protected]?subject = Feedback&body = Message">
Send Feedback
</a>
Posted by: Guest on August-15-2020

Browse Popular Code Answers by Language