Delivery receipt when auto emailing

B

Brettjg

Hello there, I'm using the following code for auto emailing from excel.
Everything is wonderful except when I add in the line to request a delivery
receipt. Can someone advise please? Thanks & regards, Brett Gregory.

ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = ""
.Item.To = Workbooks("1. TOOLS.xls").Sheets("CONTACTS").Range("AG" &
clientline).Value
.Item.Subject = Sheets("EMAIL").Range("subject").Value
.Item.Importance = 2
.Item.DeliveryReceiptRequested = True
.Item.ReadReceiptRequested = True
.Item.Attachments.Add Sheets("EMAIL").Range("O4").Value
.Item.send
Application.Wait (Now + TimeValue("0:00:05"))
Application.SendKeys "{LEFT}"
Application.SendKeys "{ENTER}"
End With
 
B

Brettjg

Hi JP, I'm using 2003 Excel. When it hits that line I get a Run time error
438 Object doesn't support this property or method. Actually all this code
came from Ron in the first place. I thought I might try putting in the
delivery receipt thing, thinking it would be similar to the read receipt
line, but no dice! Regards, Brett
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top