Hi Everyone!
I have fairly decent web skills, but more on the design side, rather than functions. It seems this should be a super simple thing to do, but for some reason I'm hitting a wall. I'm pretty sure I'm overlooking something exceedingly simple, but I'm drawing a blank. Thank you in advance!
The issue is I'm making a landing page for PayPal donors so we can capture their information and add them to our membership lists. I'm trying to use a simple form submission, but when I click the button ... nothing happens. (the email addy is not the active one). The code is pulled directly from http://www.w3schools.com/html/tryit.a...
Here's the code I'm using:
<form action="MAILTO:someone@example.com" 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="reset" value="Reset">
</form>