Forum Moderators: open

Message Too Old, No Replies

ASP 3.0 CDONTs Email Not Working

How to troubleshoot?

         

Newnewbie

2:49 pm on Aug 19, 2002 (gmt 0)

10+ Year Member



I've got an ASP 3.0 email form that's very,very simple... It was working fine, and all of a sudden now it's just not sending the email! It looks like it works okay, just no message ever shows up.

Is there an ASP Error log that I could check? Or is there some outgoing email folder I could check?? What do you suggest to
troubleshoot?

Thx!

korkus2000

2:58 pm on Aug 19, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Try putting this at the bottom of the asp replacing the MailObject.Send

On Error Resume Next
MailObject.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If

Then let us know what it is telling you :)

aspdaddy

3:48 pm on Aug 19, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi Newnewbie,

I sometimes get this after a reboot of the web server, the mail server(exchange) will also need rebooting before CDONTS mail works again.

If you get no error description returned with korkus's advice, try a reboot and see if it fixes the problem.

Newnewbie

5:53 pm on Aug 19, 2002 (gmt 0)

10+ Year Member



Cool! Thanks guys, I will try both.