outlook-2007

How to prevent: Programmatically created ICS files become HTML-formatted in Outlook 2007

I have an ASP.NET application that creates and downloads ICS files to the user. It's working fine. With StackOverflow's help, I got past a number of ICS+Outlook hurdles, so thanks. But Outlook 2007 is HTML-formatting my plain-text ICS content. So I will put in something like this: Training date/time: - GMT: [dateAndTime] - Loca...

What type of add-ins can be developed for Office 2007?

We're thinking of developing a small tasks/to-do list for our team and I wonder if we can develop any type of add-ins we want for Outlook 2007. I mean custom menus for the main toolbar, a new tab/section next to the Calender.. Are there any limitations for what you can do for Outlook 2007 add-ins? ...

Outlook VBA MessageClass - Save Digital Signature

I am trying to write an Outlook 2007 VBA script which will look at the currently opened mail item and be able to read the properties of and save off the digital signature of said mail item. Now I realize that Outlook prevents access to encrypt/sign a new email programatically, but here I am focused on messages which have already been re...

Inspector.WordEditor is Nothing (Null)

I have an add-in for Outlook 2007 developed with VSTO 3.0 in Visual Studio 2008, written in VB.NET I am listening for NewInspector events and wrapping the Inspector object, then listening for the Activate event where I attempt to grab the WordEditor. The property is always returning null now. This was not happening before, and the only ...

Hotkey for moving messages from inbox to archive in Outlook

I'd like to configure a hotkey, in MS Outlook, which does the following to the highlighted/selected messages: Mark as read (by default it's [crtl]+Q) Move to an "archive" folder (archive meaning a folder other than the default inbox) This should happen whenever I press [crtl]+M (assuming it is not already reserved), on any amount of ...

how to read outlook 2007 signature

I have written a macro to auto generate mails from the users. I just want to know how i can get the signature of the current user for the same, Thanks in advance ...

How can I check the task status of an e-mail in an Outlook macro?

In Microsoft Outlook an e-mail be flagged for follow up which marks it as a task. I can check to see if an item is marked as a task with mail.IsMarkedAsTask. How can I find out the task status (open, complete, etc) of the email? ...

Access All Custom Fields on a MAPI folder

I am trying to export data in a Microsoft Exchange 2003 public folder. However, I can not seem to retrieve the list of all non-standard/custom fields in the folder. When I try MAPIFolder.UserDefinedProperties I get an empty list. I have tried the following code, but it gives me some (not all) of the custom fields. var document =...

Microsoft office Outlook 2007 Instant Search options control name

Hi, I am working on C#.Net project with infragistics tool. My project i want to implement search options, like Microsoft office Outlook 2007 search functionality. For that i want to know which control they are using in Microsoft office Outlook 2007 Instant Search options . Thanks ...

How to get to display images sized correctly in Outlook 2007?

The width and height style attributes doesn't seem to work for Outlook 2007. For example putting in <img src="images/image003.jpg" style='width:49.5pt;height:169.5pt /> in a table cell doesn't affect the image size at all and the image occupies the whole table cell. ...

How does Outlook 2007 decide if it should redirect an e-mail to the Junk E-mail folder?

My Question: How does Outlook 2007 decide if it should redirect an e-mail to the Junk E-mail folder? Background Story: When I send a simple HTML e-mail from my domain mailbox, it's being redirected to the Junk E-mail folder. Here are two sub questions: Does Outlook 2007 care if the sender's outbound mailbox's reverse PTR is ...

background image on TD in Outlook 2007

I've been told using tables is the best way to send emails although it's been twice as difficult. I have setup the email in tables, set all of the cells which need backgrounds with the background="" property, as well as using CSS in tags saying the same thing to cover my bases. The body background shows fine in outlook, but the TD backg...

Outlook Vcalendar issue

calendar code is BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook MIMEDIR//EN VERSION:1.0 BEGIN:VEVENT DTSTART:20110114T210000Z DTEND:20110114T230000Z LOCATION:My office CATEGORIES:Business DESCRIPTION;ENCODING=QUOTED-PRINTABLE:This D6=C4=D6=DC=D6=C4=D6=D5=DC=D6=C4=D6=D5=DC=D6=DC=D5=D6=D5=DC=0D=0A SUMMARY:Meeting to discuss sal...

I want to save a file from a website embedded in a email using VBA in Outlook 2007

What I am trying to do is create a VBA macro that is triggered when a rule is invoked from a specific email that has a standard format in the subject header. When this rule is invoked it will scrap the email for a website address. The problem I have is I want to save a file to a specific location. The file accessed is not a file that c...

Outlook Email Send event raised on Background Thread

I am creating an Outlook Mail Item object and watching for the Send event. All appears well, but when the Send event fires, the event is raised on the background thread of my application. The reason this is a problem is that this event creates a record of the email sent through my application, which is added to a collection of objects. T...

Email-Headers: Sender vs. x-sender

If you want to "Send Email On Behalf Of" someone else, should you use the 'Sender' heading or the 'x-sender' heading? Outlook 2007 seems to only pay attention to the 'Sender' heading, if it's present. On the other hand, there are those who believe that the 'Sender' heading has been deprecated in favor of the 'x-sender' headin...

Outlook exchange solution

I'm searching for a exchange outlook soulution for my company ... ive find codeTwo company, with there software: http://www.codetwo.com/public-folders/ , for syncing calander .. and its great product, but if someone have a better solution / idea ( better software for lower price) or something like that it would be great. Btw, it need t...

Why not running Microsoft.Office.Interop.Outlook in asp.net?

I wrote some code about sending mail, Task, Appoinment etc. For example you can add someone to your outlook contact list over asp.net page. Every thing is ok on my local machine. But if I publish my application to a server I can not add noone on my outlook. Please help me it is important. ...

Outllook item get

how to get current item of outlook 2007 in asp.net c# here is some code which get all mails Microsoft.Office.Interop.Outlook.Application app = null; Microsoft.Office.Interop.Outlook._NameSpace ns = null; Microsoft.Office.Interop.Outlook.MailItem item = null; Microsoft.Office.Interop.Outlook.MAPIFolde...

Body of CalendarItem hidden in Outlook 2007?

I have created a calendar item using EWS, which contained a plain-text body. When I view this calendar item in Outlook 2007, nothing appears in the body, but when I view it using OWA (The web interface), I can see the body. Anyone have any idea why this is? ...