i made this HTML code in hopes to have an e-mail sent to my address wen the submit button was pressed, but it just opened a blank Outlook e-mail instead. how to i fix this?
Code:
<html>
<head>
<title>
Whatever
</title>
</head>
<body>
<form name="comments" method="post" action="mailto:me@domain.com">
Your Name: <input type=text name="realname" size=30><p>
Your Email Address: <input type=text name="email" size=40><p>
Subject: <input type=text name="subject" value="Comments on Website" size=40><br>
<P>Comments:<br>
<textarea COLS=60 ROWS=8 name="comments" wrap=virtual> </textarea><p>
Home Website*: <input type=text name="link" size=45><p>
Name of Website*: <input type=text name="linkname" size=40><p>
</b><input type="submit" value="Submit"> </form>
*Optional
</form>
</body>
</html>