Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending emails through Exchange using ASP?

Status
Not open for further replies.

bob101

Programmer
Jul 16, 2002
3
GB
Using the current code:

Dim objCDOMail
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.To = <email address>
objCDOMail.Body = <body>
objCDOMail.Send

I get the error message:

'800 70003' System can not find path specified

I have verified the page works on our development server which is Windows 2000 using the Virtual SMTP service. However, the client server is running NT4, IIS 4 with Exchange 5.5. How do I modify the code to get it to work through exchange and do I have to change anything in Exchange?

Cheers.
 
I don't believe this is a code problem. I think the problem lies in configuring your server using the Microsoft Management Console. You may need to configure the Default SMTP propeties.

Thanks,

Gabe
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top