A
Augustus
Hiya,
Having a problem with CDONTS thats only come up in the last couple of days
here
I'm running IIS5 on a Win2K machine and hosting some websites on it...
The problem: SOME of the outgoing emails generated from the site just sit in
the queue while others go with no problem
The only changes made to any of the sites was that one of our customers
wanted to add paypal integration to his online lunch ordering site... since
its early and things are being tested still I added a small subroutine that
every time PayPal triggers the IPN page the website will automatically email
me the contents of the form object
To do this, I just cut and pasted code from another part of the site that
works fine (its been up and running for almost 2 years with no problems or
bad mail)
This is the subroutine that gets called:
sub EmailMe
' this subroutine will email Me
Dim MyCDONTSMail, strEmail
strEmail="" strEmail="EMAIL TRIGGER: " & vEmailTrigger & vbcrlf &
"RESPONSE TEXT: " & varResponseText & vbcrlf & vbcrlf
for each ppResponse in Request.Form
strEmail=strEmail & ppResponse & "::" & Request.Form(ppResponse) &
vbcrlf
next
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "_____@_____._____"
MyCDONTSMail.To= "_____@_____._____"
MyCDONTSMail.Subject="PayPal IPN Auto Emailer"
MyCDONTSMail.Body= strEMAIL
MyCDONTSMail.Send
set MyCDONTSMail=nothing
end Sub
Like I say... the above code hasn't given us a problem in the past 2 years
and thats the only change we made to the site... and now its starting to
effect other emails being sent from the site
When the mail does eventually end up in BADMAIL it says delivery failed with
the message of:
This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
(e-mail address removed)
--9B095B5ADSN=_01C42C62B99BBCA800000005paperboy
Content-Type: message/delivery-status
Reporting-MTA: dns;paperboy
Received-From-MTA: dns;paperboy
Arrival-Date: Tue, 27 Apr 2004 06:55:38 -0700
Final-Recipient: rfc822;[email protected]
Action: failed
Status: 5.3.5
Any insight would be appreciated
Thanks,
Clint
Having a problem with CDONTS thats only come up in the last couple of days
here
I'm running IIS5 on a Win2K machine and hosting some websites on it...
The problem: SOME of the outgoing emails generated from the site just sit in
the queue while others go with no problem
The only changes made to any of the sites was that one of our customers
wanted to add paypal integration to his online lunch ordering site... since
its early and things are being tested still I added a small subroutine that
every time PayPal triggers the IPN page the website will automatically email
me the contents of the form object
To do this, I just cut and pasted code from another part of the site that
works fine (its been up and running for almost 2 years with no problems or
bad mail)
This is the subroutine that gets called:
sub EmailMe
' this subroutine will email Me
Dim MyCDONTSMail, strEmail
strEmail="" strEmail="EMAIL TRIGGER: " & vEmailTrigger & vbcrlf &
"RESPONSE TEXT: " & varResponseText & vbcrlf & vbcrlf
for each ppResponse in Request.Form
strEmail=strEmail & ppResponse & "::" & Request.Form(ppResponse) &
vbcrlf
next
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "_____@_____._____"
MyCDONTSMail.To= "_____@_____._____"
MyCDONTSMail.Subject="PayPal IPN Auto Emailer"
MyCDONTSMail.Body= strEMAIL
MyCDONTSMail.Send
set MyCDONTSMail=nothing
end Sub
Like I say... the above code hasn't given us a problem in the past 2 years
and thats the only change we made to the site... and now its starting to
effect other emails being sent from the site
When the mail does eventually end up in BADMAIL it says delivery failed with
the message of:
This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
(e-mail address removed)
--9B095B5ADSN=_01C42C62B99BBCA800000005paperboy
Content-Type: message/delivery-status
Reporting-MTA: dns;paperboy
Received-From-MTA: dns;paperboy
Arrival-Date: Tue, 27 Apr 2004 06:55:38 -0700
Final-Recipient: rfc822;[email protected]
Action: failed
Status: 5.3.5
Any insight would be appreciated
Thanks,
Clint