VBA code to disable/enble Outlook Sent folder

  • Thread starter Thread starter Song Su
  • Start date Start date
S

Song Su

I want to give user a choice of disable Outlook save a copy in sent folder.
How to do it in VBA?
 
Try using the .DeleteAfterSubmit property of the MailItem that you're
working with. If you want to designate a specific folder to save the copy
in, then use the .SaveSentMessageFolder.

You'll want to refer to the articles at this address for specific code
examples.

http://msdn.microsoft.com/en-us/library/aa210946(office.11).aspx

I'm assuming of course that you're generating the MailItem from with Access
using Outlook Automation.
 
Back
Top