I have inherited an ASP site that sends email via an object defined as:-
No errors or email is transmitted.
I have looked in IIS and found there are a few settings
none of which I really understand.
There is a 'Relay Restriction' IP address set to identify computers that may relay through the Default SMTP Service in IIS. The IP is the same as a defined Domain IP
within the Default SMTP Service.
Aprt from that I don't see anything obvious. Is there some way I can check this 'Relay' service and what is it??
Dazed and confused
Code:
Set objNewMail = Server.CreateObject("CDONTS.Newmail")
ObjNewMail.From = "Somebody@somewhere.com"
ObjNewMail.To = "Somebodyelse@somewhere.com"
ObjNewMail.Subject = "Subject"
ObjNewmail.Send
No errors or email is transmitted.
I have looked in IIS and found there are a few settings
none of which I really understand.
There is a 'Relay Restriction' IP address set to identify computers that may relay through the Default SMTP Service in IIS. The IP is the same as a defined Domain IP
within the Default SMTP Service.
Aprt from that I don't see anything obvious. Is there some way I can check this 'Relay' service and what is it??
Dazed and confused