
Originally Posted by
felgall
mailto: only works inside the <a> tag in web pages and not with forms.
That is blatantly not true.
For starters, this works in my IE9
Code:
<body>
<form action="mailto:me@mydomain.xyz" method="post" enctype="text/plain">
<input type="text" name="txt1" />
<input type="submit" name="submit" value="Send" />
</form>
</body>
When the send button is clicked, all the name/value pairs in the form are sent to the email address.
However, there are disadvantages to using mailto: including
1) Some older browsers don't support it
2) It requires the user to have an email client program installed on their computer and to have it configured to work with a POP mail account
3) The contents of the email are not encrypted for privacy.
Bookmarks