outlook

how to save mail form outlook with attachments?

Hi I wanted to save Outlook mails in to msg format along with the attachment through C#. I tried the following code using Outlook = Microsoft.Office.Interop.Outlook; private void button1_Click(object sender, EventArgs e) { Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application(); Outlook.NameSpace ns = app.GetN...

How to set a custom Icon of an Outlook folder?

Is there any way to set a custom Icon of an Outlook folder or subfolder using Outlook object model? I am using 2007 and C# Thanks, ...

Using win32com and/or active_directory, how can I access an email folder by name?

In python w/ Outlook 2007, using win32com and/or active_directory, how can I get a reference to a sub-folder so that I may move a MailItem to this sub-folder? I have an inbox structure like: Inbox | +-- test | `-- todo I can access the inbox folder like: import win32com.client import active_directory ses...

Invoke Spellcheck in Office 2007 via vsto add-in using c# when sending email.

I have added Two buttons that send and copy and send and move emails from outlook to our document management system that sits in Sharepoint. I have both buttons working but the automatic spellcheck in outlook isn't invoked. Is there a way to invoke outlooks 2007 spellcheck before sending the email programmatically. Here's a code snippet...

Using win32com and/or active_directory, how can I change the conversation of a MailItem?

In Python w/ Outlook 2007, using win32com and/or Active Directory, how can I change the conversation of an email? Is there a way to change the mapping of a ConversationIndex to a ConversationTopic? I can successfully change the subject of a MailItem by creating a new MailItem, but when I view the folder in "Conversation" view mode, the...

Import/Sync Contacts from SQL Server to Outlook

Essentially I have a SQL Server (2008) database that contains contact information (among other things), and would like to provide the ability to view these contacts in Outlook. Outlook 2003 must be supported at minimum. The Outlook clients are connected to Exchange, so having the contacts available in Exchange (and then viewable via Ou...

Executing PHP script based on Outlook rule

I am getting daily data dump via e-mail, which is being processed by Access (based on the Outlook rule, VBA is extracting the attachment and running Access procedures, so I get a report). As data dump is getting bigger and bigger, and having in mind that Access is run locally which consumes my resources, I want to set up a PHP/MySQL ser...

Sharepoint edit task from outlook on windows7

I have sharepoint approval workflow on Moss2007. Windows XP users are able to approve the task from their outlook. But in windows 7, outlook would not open the task edit form at all and no error message either. is there anything need to be turned off/on in windows 7 outlook in order to approve an item from their inbox? ...

Get unread Mails from Outlook

Is there any way to get all mail from an specific Folder into my Application? ...

CalDav on Outlook?

I'm looking for a good way to view CalDav calendars within Outlook. I'm aware of the OpenConnector (www.openconnector.org) project, but have not been happy with it thus far (re: stability issues & difficulty to configure). Also, it appears to be supported by a single developer and there hasn't been a new release in about 18 months. I ...

Webpage is not displayed properly in outlook

when i try to send a webpage via email using the "send page by E-mail" menu in the internet explorer, the webpage is not displayed properly. On the webpage we have javascript enabled dropdown menus that impact the layout of the page. is there any special coding for outlook editor so that it will appear the same as in ie? -Vivek ...

Is there a character limitation for hyperlinks in Outlook?

We have a web application that allows users to send out customized emails to company employees and all recipients use Outlook 2007 as their email client. In rare occasions, it is possible that an email is sent with a hyperlink that has an apparently excessive number of characters. In these instances, there are no problems except the li...

How to create a Appointment in a Shared Calendar (Sharepoint) with VBA (Macro)?

I am actually trying to make an appointment from an excel spreadsheet. I have all the information of the appointment, like subject, body, start and end dates, I actually can create an appointment but only with my personal calendar in outlook. How do I copy/move/create an appointment in a shared calendar in a sharepoint server? I've tri...

WebDav: How to set Exchange 2003 appointment category?

I am using Independentsoft's WebDav API to create a calendar appointment. I would like to set the category of the appointment. In Outlook, I would set the category as indicated here: How would I assign the category using the WebDav API? Most other fields are simply properties of the appointment object: Appointment appt = new Appoi...

Get Folder from Outlook using C# & GetFolderFromID EntryIdStore

I'm trying to get a specific folder in outlook with c#. Someone else had the same issue here http://stackoverflow.com/questions/76964/using-outlook-api-to-get-to-a-specific-folder but when using the Folders collection I'm not sure how to get through the folders collection. I mean, I've looked at the type of object that the Folders coll...

Application behaving as a service

For one project reason I want to make my Microsoft Outlook Application to run as a service meaning that when i log off my pc it doesn't close. Trying to achieve this I decided that maybe it can be easier to build a Windows Service that calls the outlook application to open in its onStart Method. Can anyone redirect me in the right path ...

Creating a new Outlook store

Hi , I am creating a pst file in Outlook using C#, and Addin express. The new pst file ("My Inbox") should have Inbox,Sent Items, Outbox. Outlook.Folders olFolders = olNamespace.Folders; foreach (Outlook.MAPIFolder olTmpFolder in (IEnumerable) olFolders) { if(olTmpFolder.Name == "My Inbox") { ...

Are there any Outlook Contacts Controls in ASP.NET?

How can I access Microsoft Outlook contacts using ASP.NET? Are there any controls that can do this? ...

Can you create an oft file in anything other than Outlook?

Can you create an oft file in anything other than Outlook? ...

Double slashes in urls in Outlook

The url of our search page is build like this: http://www.example.com/results/name/John/city/Miami/gender/Male This would display every male named John in Miami. When one of the filters is left empty, the url would be something like this: http://www.example.com/results/name/John/city//gender/Male So there are two slashes in the url. ...