|
|
 |
The following web server cgi script is available for use on cybox hosted web sites.
In order to create a form which sends the form data
to an email address:
- Create the form page.
- Specify the form method as POST.
- Specify the form action as "http://cgi.cybox.com/form2mail.cgi".
- Create the following hidden form fields in your form,
containing the information to customize the delivery (in
Frontpage, select form properties, advanced):
| Name |
value |
| MAILTO |
the email address to send the form data to |
| EMAIL |
the From email address of the form data |
| ENAME |
the name part of the email address above |
| SUBJECT |
the subject of the email message |
| SUCCESS |
the URL to display if the form submission succeeds |
| FAILURE |
the URL to display if the form submission fails |
- Form field names are case sensitive.
- On your form, do not use form field names which are all
uppper case. Those field names and values will not be included
in the email.
- Email addresses must be local to cybox or domains hosted by NeTrack on
the cybox server. Forms can not be sent to or from remote email addresses.
- Within each of the hidden form fields, you can include data
from your form by putting exclamation points around the form
field name to include. For example, if your form contains a
field named "Customer," you can include the value of that field
as entered on the form in the email subject, e.g.
"type=hidden name=SUBJECT value='Request from !Customer!'"
- Form fields submitted with empty values or values of "none"
or "nothing" will not be included in the email for simplicity.
|