I know that there are multiple posts and questions out there on How to send an email from HTML form. But, I am having a slightly different query.
I have an HTML form, what I want is that when I click on submit, it should not show the information in a mail, but it should directly send the form information to recipients email ID. When I tried the following code:
<form action="mailto:dummy1@chamisplace.com" method="POST"
enctype="multipart/form-data"
name="EmailTestForm">
Your Name:<br>
<input type="text" size="20" name="VisitorName"><br><br>
Your Comment:<br>
<textarea name="VisitorComment" rows="4" cols="20">
</textarea><br><br>
<input type="submit" value="Email This Form">
</form>
It is opening a MS Outlook window with the form information. But it is not sending it automatically.