Mason Pawsey
New member
So I'm trying to get this HTML code to work.
I got some code from W3Schools and edited their email form.
I want the email to be a secret, so I encoded a mailto link from a website.
Whenever I load it in Chrome and hit the send button on my form, it opens up my Mail application on my Mac. Is this only on Macs? How can I edit the code so ut just sends basically an echo of what they wrote to my email?
Cheers
PS
heres the code I used:
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
Name:<br />
<input type="text" name="name" value="your name" /><br />
E-mail:<br />
<input type="text" name="mail" value="your email" /><br />
Comment:<br />
<input type="text" name="comment" value="your comment" size="50" />
<br /><br />
<input type="submit" value="Send">
<input type="submit" value="Reset">
</form>
I got some code from W3Schools and edited their email form.
I want the email to be a secret, so I encoded a mailto link from a website.
Whenever I load it in Chrome and hit the send button on my form, it opens up my Mail application on my Mac. Is this only on Macs? How can I edit the code so ut just sends basically an echo of what they wrote to my email?
Cheers
PS
heres the code I used:
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
Name:<br />
<input type="text" name="name" value="your name" /><br />
E-mail:<br />
<input type="text" name="mail" value="your email" /><br />
Comment:<br />
<input type="text" name="comment" value="your comment" size="50" />
<br /><br />
<input type="submit" value="Send">
<input type="submit" value="Reset">
</form>