Coding email with 'read receipt' requested in VBA

  • Thread starter Thread starter Phrank
  • Start date Start date
P

Phrank

Hi,

I've checked out how to send mail in VBA from this site:
http://www.rondebruin.nl/sendmail.htm. This worked great for sending
a short message. I would also like to have it sent with a Read
Receipt included (so the sender is notified when their message is
read). How does that get coded? Thanks.

Frank
 
Once you have an e-mail object active (for example the "OutMail"-object
in the first example (Mail the whole workbook) on that website), and
you're assigning the properties of that e-mail, you can also add the
following line of code:

With OutMail
.ReadReceiptRequested = True
End With

HTH, CoRrRan
 
Thanks both! I appreciate this.

Once you have an e-mail object active (for example the "OutMail"-object
in the first example (Mail the whole workbook) on that website), and
you're assigning the properties of that e-mail, you can also add the
following line of code:

With OutMail
.ReadReceiptRequested = True
End With

HTH, CoRrRan
 

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

Back
Top