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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DeliveryReceipt No Work

Status
Not open for further replies.

GigiLai

Programmer
Sep 3, 2004
6
US
What am I doing wrong? I need to know if the e-mails that are being sent from my pages reaches the destination. All I'm concern about is if it reaches the destination, and not whether it has been read or not. My code works fine sending, but when I add the 2 lines below (DeliveryR line & the DSN line), it gave me the following error:

Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'DeliveryReceipt'
/netcents/email.asp, line 36 (DeliveryReceipt line)

With objMsg
.To = "johndoe@yahoo.com"
.From = "admin@yahoo.com"
.Subject = "Test Del. Reader"
.TextBody = "test"
.DeliveryReceipt = True
.DSNOptions = cdoDSNSuccessFailOrDelay
.Send
End With
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top