|
|
 |
| Classic ASP Professional For advanced coder questions in ASP 3. NOT for ASP.NET 1.0, 1.1, or 2.0. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Professional section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

August 12th, 2009, 09:38 PM
|
|
Registered User
|
|
Join Date: Aug 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Basic CDOSYS email form question
Hello,
I'm a designer not a programmer and have a basic question about my mail form. Currently if someone enters an email address that isn't formatted properly (EG. just without @.com etc.), the browser brings up a server error message. However I would like the user to be redirected to a specified page, but I don't know how to do this.
If someone could let me know what code to use and where to insert it, that would be greatly appreciated.
thanks in advance,
Anthony
Code:
<%
Dim MyMail
Dim MyBody
Dim MyEmailFrom
Dim MySubject
Dim MyName
Dim MyPhone
Dim MyWeddDate
Dim MyWeddLocation
Dim MyHowHearAboutUs
Dim MyReferralFrom
Dim MyMessage
MyEmailFrom = Request.Form("EmailFrom")
MySubject = "Wedding Films Website Enquiry"
MyName = Request.Form("Name")
MyPhone = Request.Form("Phone")
MyWeddDate = Request.Form("WeddDate")
MyWeddLocation = Request.Form("WeddLocation")
MyHowHearAboutUs = Request.Form("HowHearAboutUs")
MyReferralFrom = Request.Form("ReferralFrom")
MyMessage = Request.Form("Message")
MyBody = MyBody & "Name: "& MyName & VbCrLf
MyBody = MyBody & "Phone: "& MyPhone & VbCrLf
MyBody = MyBody & "WeddDate: "& MyWeddDate & VbCrLf
MyBody = MyBody & "WeddLocation: "& MyWeddLocation & VbCrLf
MyBody = MyBody & "HowHearAboutUs: "& MyHowHearAboutUs & VbCrLf
MyBody = MyBody & "ReferralFrom: "& MyReferralFrom & VbCrLf
MyBody = MyBody & "Message: "& MyMessage & VbCrLf
Set objErrMail= Server.CreateObject("CDO.Message")
With objErrMail
.From = MyEmailFrom
.To = "anthony@weddingfilms.com.au"
.Subject = "Wedding Website Enquiry"
.TextBody = MyBody
.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Configuration.Fields.Update
.Send
End With
Response.Redirect("http://www.weddingfilms.com.au/success.htm")
%>
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |