If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > silent error with email

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-13-04, 14:00
softie() softie() is offline
Registered User
 
Join Date: Sep 2004
Posts: 21
silent error with email

my page uses code identical to the following example but no e-mail is sent and there is no error message of any kind



<%
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")

objMail.From = "rob@tconsult.com"
objMail.Subject = "How TO send email with CDONTS"
objMail.To = "someone@someplace.com"
objMail.Body = "This is an email message" & vbcrlf&_
"with CDONTS." & vbcrlf&_
"It is really easy. "
objMail.Send

'You must always do this with CDONTS.
set objMail = nothing
%>
Reply With Quote
  #2 (permalink)  
Old 10-13-04, 19:45
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
well it's highly possible that as far as cdnots is concerned the mail has been sent, but the server it set it to con not relay the message on to other servers (so effectively your local server is collecting a pile of mail for sending that it just can't send).
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On