Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
2k views

Can I iterate through all Outlook emails in a folder including sub-folders?

I have a folder which contains a number of emails and sub-folders. Within those sub-folders are more emails. I'd like to write some VBA which will iterate through all emails in a certain folder, ...
3
votes
8answers
2k views

Outlook MailItem: How to distinguish whether mail is incoming or outgoing?

I am writing VSTO Outlook addin in C#, and I need to distinguish, whether given MailItem is incoming or outgoing (or neither, when it is for example a draft). Is there some foolproof way to do this? ...
2
votes
1answer
544 views

Capturing changes to MailItem.SendUsingAccount property in Outlook

I am working on an Outlook extension that requires making a change to a MailItem open in a compose window if the SendUsingAccount property is changed via the GUI. I would like to be albe to apply my ...
1
vote
4answers
794 views

How to release Outlook MailItem correct?

I just can't release my Outlook MailItems. After opening 200 Mails the Exchange Sever returns the maximum open Emails is reached. I'm remove my UserProperty from all selected Mail. My Code: ...
1
vote
0answers
318 views

Reading properties from a Mailitem in Outlook outbox makes it not send

I'm writing a VSTO app for Outlook 2007 that periodically checks mails in the Outbox. I can run over the MailItems and check the .Submitted property with no adverse effects. But if I read the SentOn ...
1
vote
4answers
6k views

MS Outlook VBA - When is a MailItem not a MailItem?

I have written a message handler function in Outlook's Visual Basic (we're using Outlook 2003 and Exchange Server) to help me sort out incoming email. It is working for me, except sometimes the rule ...
0
votes
1answer
23 views

DASL Filter in Outlook to select Mails by their EntryID

I'm trying to apply a DASL Filter [customized View] on a search Folder with this SQL query: "http://schemas.microsoft.com/mapi/proptag/0x0FFF0102" = ...
0
votes
1answer
153 views

“Read” Event for Mailitem in Outlook 2007 VSTO VB.NET

Okay, this is a bit of a tricky one... I am programming an add-in for MS Outlook 2007, using VS 2010 and VSTO, and VB.NET. My goal is to prompt the user to print off emails that they receive from ...
0
votes
1answer
136 views

How can I determine a new Reply/Forward message's parent MailItem in an Outlook 2010 C#.NET Add-in

I am trying to develop an Add-in for Outlook 2010 that allows me to tag an email using an Outlook.MailItem's UserProperties collection. The fields are loaded from a database configuration and ...
0
votes
2answers
433 views

Open Outlook mail Item using EntryID, StoreID, and / or PR_ENTRYID

NOTE: I'm using VBA and Office 2007. (I would use C#, but the project parameters don't allow this) I'm attempting to find some method in Outlook, or an API, that will allow me to open an Outlook mail ...
0
votes
2answers
417 views

Get named MAPI Property from MailItem in C#

I'm developing an Outlook 2010 custom plugin in C#. This is my first time using C# (I'm a java guy normally). There is a named (custom) MAPI property on a message that I would like to access and am ...
0
votes
0answers
263 views

C# save outlook email attachments recursively

I'd like to be able to save all the email attachments from a msg file, and if they there is a msg file attached, to be able to go into that and save those also. I've having trouble passing the ...
0
votes
1answer
293 views

Create/Open existing msg from path to new Outlook.MailItem in c#

Hello I'd like to create a Outlook.MailItem ( I believe ) from an existing one located on disk. I have the path stored in a string, and would like to access to save the body and attachments from it. ...
0
votes
1answer
95 views

Is it possiable to set the reply-to address in a mailitem using c#

Is it possible to set the Reply To address of a mailitem in c#? As in mailitem.reply(); then set the reply to so that all messages once replied to by the recipient come into a central mail box? ...
0
votes
1answer
28 views

How to cancel an Outlook.MailItem changes?

I am doing changes on an Outlook.MailItem but after closing the last explorer a message box asks to save the item (twice!). I want to cancel the "dirty" state of the item without saving it so no ...
0
votes
0answers
109 views

How do i take a cdo message from a folder outside of outlook and put it into the outbox inside of outlook

I have an excel file that can write a cdo email to a file on my network, however I have no idea and have had no luck finding a way to import that into outlook (which is running on another computer) ...
0
votes
0answers
372 views

Outlook 2010 : Editing MailItem.HtmlBody for Reply and Forward emails

Hey guys, I'm trying to get the htmlbody of an email and put hidden meta tags between the header tags. With a fresh new email in Outlook 2010, I can do that just fine! But with 'Reply' and 'Forward' ...
0
votes
1answer
85 views

Outlook MailItem opened from standalone file, or not?

I'm developing an Outlook addin in C# and have a problem distinguishing mails opened from a folder (Inbox, Sent etc) from mails opened from a standalone .msg file. I've tried inspecting the Parent ...
0
votes
2answers
451 views

How do I determine if an Exchange mail item is an auto reply message?

I have a .NET application that polls an Exchange email mailbox for new messages on a scheduled basis. Further processing happens when new messages are found in the email mailbox. I've encountered an ...
0
votes
1answer
105 views

Unable to find any AttachmentDelete/Removed event on Outlook MailItem

I am doing some stuff whenever an attachment is added to a being-composed mailItem, on AttachmentAdd event of MailItem, and things work fine. Now I want to undo the same stuff, when an attachment is ...
0
votes
1answer
220 views

Toggling digital signing in Outlook.MailItem

In Outlook 2007, I have written an Application_ItemSend handler which needs to turn off digital signing for selected messages, even though signing is normally on by default for all messages. How can ...
0
votes
0answers
3k views

Outlook MailItem Save/SaveAs

I have an outlook add-in that allows the user to save an email into a database. When the user does save the email i modify the email subject so it can be identified as being saved. Saving the email ...