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
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