outlook

Can I mark an Email as "High Importance" for Outlook using System.Net.Mail?

Part of the application I'm working on for my client involves sending emails for events. Sometimes these are highly important. My client, and most of my client's clients, use Outlook, which has the ability to mark a mail message as High Importance. Now, I know it is callous to assume that all end users will be using the same interface, ...

Workaround for Outlook 2007 for wrapping text around image with margin?

As we all know, Outlook 2007 uses the Word 2007 rendering engine, causing endless grief when designing HTML email message. [Insert rant here] In particular, float, margin, and padding are - shall we say? - poorly supported. To simulate float so that text wraps around an image, apparently we can simply use: <img src="foo.png" align="ri...

Using an ActiveX object from an Outlook hosted webpage - possible?

I'm trying to do the following: We have an outlook plugin, written in .NET (and C++). It does various things, and is manually installed on the end users machines (usually via AD deployment or similar) We are changing our search to use a webpage-based search, but from within outlook. That part is ok, however we want to communicate from ...

PR_USER_X509_CERTIFICATE extra data

Hi, I am trying to import an outlook PST file to my application running on Mac OS X. The PST file consists of contacts created in Outlook. The contacts have X509 certificates added to them. The problem I am facing is ASN decoding of the certificate fails. I have read somewhere that there is extra data before and after the certificate ...

display:none doesn't work on outlook 2007

I want to send some msg from our manage system to customers. but i wanna some tags hidden to them. i set css : .hidden{display:none;} , but this does not work. ...

Session lost when opening IE window from application hosted in Outlook

An ASP.NET application (actually with Silverlight but it doesn't matter) is hosted in Outlook as folder home page. In this application there's a link to open popup window, which opens a separate IE window, not in Outlook. The problem is that in this case it seems that ASP.NET session is lost. A call to ASP.NET service has nothing in Ses...

Integrating a ClickOnce app with Outlook

I have a ClickOnce app that used to be run by users with Power User privileges. So to integrate to outlook (e.g. syncing of emails, appointments and addresses) I used a 3rd party component from Add-In Express, which includes an ActiveX DLL. So when the user would download my app, I'd register the ActiveX DLL (if it wasn't already regis...

VSTO (Outlook Add-In) Setup Deployment (C#)

Hi, I am having some issues creating a setup file for my Outlook 2007 add-in. The issue is that the Add-In needs to have a registry entry that references the manifest (http://msdn.microsoft.com/en-us/library/bb386106.aspx). The project builds a manifest file that appears in my bin\debug folder. However, in my setup project, if I go a...

In Outlook 2007 using VSTO 3.0, how to detect if the default store has changed since Outlook was started?

I'm doing something similar to this, but wondering if there is an event somewhere that I'm missing Store DefaultStore { get { var defaultStore = mOutlookApp_Model.Session.DefaultStore; if ( defaultStore.StoreID == mDefaultStore.StoreID ) { // the default store we s...

How to best future proof my application that needs to connect to Outlook?

I have a contact management application written in Delphi which has a “Sync with Outlook” feature that I developed 10 years ago. Now, I’m going back to add some features and fix some bugs. This sync feature uses the Outlook object model to get started, but it has an optional mode called “Use MAPI Enhancements” where it uses pure MAPI t...

How To Open Outlook Task window from client side with javascript

Not for IE users. I want to Open the task window of outlook when the user click a button in my web page. i mean without using the ActiveXObject("Outlook.Application"); and again, method that will work for all browsers especially FF or Chrome. and i need it to be from the client side, not server side. BTY: i assume the user is usi...

How can I avoid "RPC Server is unavailable" when a user closes Outlook, and my app is using OLE Automation?

My application uses the Outlook object model. Outlook is an out-of-process COM server. Before Outlook 2007, if the user would close Outlook while my app had a reference to it, Outlook would stay running in a hidden state. In Outlook 2007, if the user closes Outlook, the process closes and my application receives a "RPC server is unava...

Ensuring the contacts in a Distribution List are displayed with both name and email address

How can I ensure the contacts I add to an Outlook distribution list are displayed with both name and email address? These contacts may not exist in any other address book, just the distribution list. Currently they show up just as an email address (in both columns). Here's roughly the VBA we're using: Do Until RS.EOF //h...

Is it possible to customize the Outlook Conferencing Add in?

I want to modify the labels of the outlook conferencing add in... e.g. I want to change the "Schedule a live meeting" text to say "Schedule my meeting". is it possible using VSTO? or I can create only new add ins using VSTO and not customize the existing ones ?? (I am talking abt this conferencing add in: http://aspoc.net/archives/2008/...

Delphi and Outlook TaskItem: How to know if DueDate is empty?

This seems like a no-brainer but I couldn't find anything on it. How do I detect if a date variant in Outlook is "empty"? For example TaskItem.DueDate - the duedate is not necessarily filled. If it's not filled Outlook returns "4501.01.01." - I can test for this value, but this just doesn't seem "elegant" enough. Thanks! ...

How do I set a custom icon in the Outlook explorer window for my custom item?

Using Using VSTO 3.0 for Outlook 2007 I have my own item type derived from post called "IPM.Post.CustomType". However in the explorer window (the list of all items in a folder), the icon for my item is still the standard post item. How do I make my custom item show my custom icon instead of the standard icon in the explorer window? An...

VSTO outlook add button to contact info window

When you are reading an email , you see in the from list the sender's name .. When you double click on the Sender's Name . You get a Outlook properties dialog box with Senders Information such as email , phone, location , address etc ., and in the dialog , i find a button labelled " Actions " with communicator icon in it. And the acti...

Setting the "To" field on a post item

I have a custom class that is derived from Post called: "IPM.Post.CustomType" I have these items in the inbox and I'm trying to set the to field to show recipients. I've tried setting the following properties with no success. Any ideas? Or if I'm using a post item, will the to field always display as empty in Outlook? OutlookI...

Sending someone a Link in Outlook that refers to a local application with a param

Hi I want to send someone a HTML Mail via my application (c#). This Mail contains should contain a clickable html link that refers to a local application. f.e. : <a href="c:\myapplication.exe -1234">click</a> It already works to send the mail but the link does not appear as a link. I also tried the "file:/// ... " thing but it does n...

Display Outlook rooms occupancy in a web page

Hi everybody, I'm decommissioning a meeting room scheduling [web] tool in favor of the same Outlook's functionality. I'd like, however, to publish (read-only) a "Group Schedule" view in a web page. To make the idea more clear: On Outlook's Calendar view, select Actions / View Group Schedules and then create a new group for say, Confere...