View it live here - nickhiebert.com/test_site/contact.html
This is what I'm using now
Code:
<form action="MAILTO:sampleemail@email.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" size="40">
<br>
<br />
Email:<br>
<input type="text" name="mail" size="40">
<br>
<br />
Subject:<br>
<input type="text" name="subject" size="40">
<br>
<br />
Message:<br>
<textarea rows="8" cols="31"></textarea><br />
<br />
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
The problem I'm having is not working. Anyone know of any other ways? I found a sample of this and modified it from this link - w3schools.com/html/tryit.asp?filename=tryhtml_form_mail
Help would be appreciated
Thanks