How to save email as draft in Outlook 2003 programmatically?
Posted
by Andrew
on Stack Overflow
See other posts from Stack Overflow
or by Andrew
Published on 2009-09-29T04:43:14Z
Indexed on
2010/04/18
16:03 UTC
Read the original article
Hit count: 260
I am working on an VB.NET app which constructs emails programmatically.
This app can be used by different people at the same time so I thought that having a "central" email mailbox would be appropriate. The users would then have "links" (not sure of the correct term) to that central mailbox through their local copy of Outlook.
I want to be able to save these emails so that all users can see the generated emails in the "Drafts" folder of their Outlook so that they can check the emails first for any errors and then send it off.
I was originally simply talking directly to the Outlook app on the server using Microsoft.Office.Interop but have since read that it is not recommended for use in this sort of scenario.
Any ideas?
© Stack Overflow or respective owner