send myself email
There is a web form script available for general use. You can access it as http://www.Vex.Net/cgi-bin/sendmail.py. To use it simply make sure that you have the following fields defined in your script:
<INPUT TYPE="HIDDEN" NAME="_TO_" VALUE="you@Vex.Net">
Who to send the results to. Multiple recipients will work fine.
Each recipient must end in @Vex.Net.
<INPUT TYPE="HIDDEN" NAME="_SUBJECT_" VALUE="Subject Line">
What the subject should be on the mail message sent to recipients
The following fields are optional:
<INPUT TYPE="HIDDEN" NAME="_REPLY-TO_" VALUE="name@site.com">
Who should be listed in the "Reply-To" field of the mail message.
Default is to have no Reply-to field.
<INPUT TYPE="HIDDEN" NAME="_CHECK_EMPTIES_" VALUE="field[:field]...">
Colon separated list of fields that should not be blank.
Default is empty string.
<INPUT TYPE="HIDDEN" NAME="_TITLE_" VALUE="Whatever">
Title to use for page.
Default is "Form accepted"
<INPUT TYPE="HIDDEN" NAME="_ERR_TITLE_" VALUE="Whatever">
Title to use for page on error.
Default is "Error".
<INPUT TYPE="HIDDEN" NAME="_RETURN_URL_" VALUE="URL">
URL to return to on success
Defaults to using internal page
<INPUT TYPE="HIDDEN" NAME="_USE_RECAPTCHA_" VALUE="login">
Use recaptcha.net to verify humanity (private key in ~login/.recaptcha)
Defaults to not using recaptcha.net
In addition, any other variables from your script will be reported in the email.

