I'm hoping someone can help me. I have an asp form that is set up correctly however, when submitting the form, the mail is not received on the other end. My server is set up on an intranet environment and the form is being sent to an outside address. Not sure if that has anything to do with it or not.
I'm using VB for the coding as follows:
Set objMail = CreateObject("CDONTS.NewMail"
objMail.MailFormat = 0
objMail.BodyFormat = 0
objMail.To = "example@example.com"
objMail.From = Email
objMail.Subject = "Order Form"
objMail.Body = body
objMail.send
set objMail = nothing
All of my other asp forms work fine but they send within the company. Any ideas?
Thanks in advance for your help.
Laura.
P.S. My server is using FrontPage 2002 server extensions.
I'm using VB for the coding as follows:
Set objMail = CreateObject("CDONTS.NewMail"
objMail.MailFormat = 0
objMail.BodyFormat = 0
objMail.To = "example@example.com"
objMail.From = Email
objMail.Subject = "Order Form"
objMail.Body = body
objMail.send
set objMail = nothing
All of my other asp forms work fine but they send within the company. Any ideas?
Thanks in advance for your help.
Laura.
P.S. My server is using FrontPage 2002 server extensions.