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?