|
http://aspemail.com/manual.html is the location of ASPEMAIL version
5.0 (paid version) available for use on our Windows servers. Use smtp.w2k3.usbusinessweb.net as smtp server. |
Note: You can specify a recipient in advance, without getting it from a form page field, using the following code: Mail.AddAddress Request("fred@flintstoners.net") Note: You can use multiple fields in your form page using the following code: Mail.Body = Request("Field1") & chr(13) & chr(10) & Request("Field2") (The & adds additional information, and the chr(13) chr(10) provides a line break so each form field data is on a separate line.) Note: You can include field names in the form results message using the following code: Mail.Body = "Field1:" & chr(9) & Request("Field1") & chr(13) & chr(10) & "Field2:" & chr(9) & Request("Field2") (The chr(9) adds a tab to provide space between the field name and the field data.) |