Im trying to find an ultra simple example that takes a single text box value, and emails it to an address that I specify when the user hits “submit”
The form would be something like this:
<form>
<input type="text" name="emailAddy" value="Enter Your Email Address" size="25" />
<input type="submit" value="Get Notified" />
</form>
On click, it should email the emalAddy field value to me… Any thoughts?
AFAIK, You can’t use plain jQuery and HTML to send emails. You need some sort of server side code to mail.
What you can do instead is, submit the form, extract the details on the server side and send the email. This question and links given there might be of help.