Questions tagged [outlook-2003]

Outlook 2003 is Microsoft's personal information management software.

Microsoft Outlook is a personal information manager (PIM) from Microsoft, available both as a separate application as well as a part of the Microsoft Office suite. It includes an email client, calendar and other personal information organization tools.

This version introduces new objects, methods and properties for use in VBA. It is also the last version to feature the classic toolbars most Office users are familiar with, replacing them with the new user interface (UI) called The Ribbon.

should be used for questions specific to the Outlook 2003 version of the program, to let SO users know your version. There is also a tag if you are asking about VBA.

Links:

136 questions
76
votes
13 answers

Can I read an Outlook (2003/2007) PST file in C#?

Is it possible to read a .PST file using C#? I would like to do this as a standalone application, not as an Outlook addin (if that is possible). If have seen other SO questions similar to this mention MailNavigator but I am looking to do this…
Andy May
  • 4,030
  • 5
  • 34
  • 33
36
votes
3 answers

How to open Outlook new mail window c#

I'm looking for a way to open a New mail in Outlook window. I need programically fill: from, to, subject, body information, but leave this new mail window open so user can verify content / add something then send as normal Outlook msg. Found…
Maciej
  • 10,423
  • 17
  • 64
  • 97
34
votes
11 answers

Add the default outlook signature in the email generated

I am using the Microsoft.Office.Interop.Outlook.Application to generate an email and display it on the screen before the user can send it. The application is a winform application coded in C# in the .NET Framework 3.5 SP1 and it is Microsoft Outlook…
reggie
  • 13,313
  • 13
  • 41
  • 57
25
votes
4 answers

Unable to cast COM object - Microsoft outlook & C#

I have written this code to view the unread items in my outlook mail box and here is the code: Microsoft.Office.Interop.Outlook.Application app; Microsoft.Office.Interop.Outlook.Items items; Microsoft.Office.Interop.Outlook.NameSpace ns; …
Zerotoinfinity
  • 6,290
  • 32
  • 130
  • 206
17
votes
7 answers

Outlook 2013 Ignores font-family

What is the best way to specify the font-family when coding emails for Outlook 2013? I have found that font-family is ignored when it is added inline like this: Text I have found that…
Marc
  • 4,661
  • 3
  • 40
  • 62
11
votes
7 answers

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 fails and Outlook deactivates it. Then I turn…
Meomaxy
11
votes
4 answers

Outlook 2003 Add-in won't load, but is in working order

I have created an Outlook add-in for 2003, 2007 & 2010. The add-in works fine in 2007 and 2010, but is not loading correctly in 2003 on any machines, other than my own dev machine. There are no code issues, as there are no errors shown in the load…
SteveA
  • 456
  • 6
  • 14
7
votes
1 answer

How to send email to gmail using SMTPclient in C#?

I am using outloook 2003 and visual studio 2008. i want to develop an application that will send the email to any domain. but my code fails when i'm trying to send email to gmail, hotmail etc. actually all the messages is stored in…
sumit
  • 71
  • 1
  • 1
  • 2
7
votes
3 answers

How do I create and send appointments to Microsoft Outlook calender?

I am trying to create an appointment in the Microsoft Outlook (2003) calender of another person using the below code.While running this program, The Appointment is getting saved in my calender.But not being sent to the recipient. try { …
Shyju
  • 214,206
  • 104
  • 411
  • 497
5
votes
2 answers

How to develop addin for MS Outlook?

How do I develop addin for MS Outlook that works with all 1. Outlook 2010 2. Outlook 2007 3. Outlook 2003 I have developed addin that works well with 2010 and 2007 BUT NOT with 2003. I want something like this that works well with all the above…
Ajn
  • 573
  • 3
  • 8
  • 18
5
votes
3 answers

Outlook 2003 stripping out text decoration - HTML Email

I having some issues with a client of mine. I've built (not designed) an email template for them to use with Create/Send. I've used the design testing service from Create/Send and all is looking as intended. However, when the client views the email…
Shaun
  • 1,099
  • 2
  • 13
  • 23
4
votes
4 answers

Outlook 2003 does not import .ics calendar while outlook 2007 does

I have an .ics file I manually create with PHP like the following: BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN VERSION:2.0 METHOD:PUBLISH X-MS-OLK-FORCEINSPECTOROPEN:TRUE BEGIN:VEVENT CLASS:PUBLIC DESCRIPTION:Some…
Jason
  • 15,017
  • 23
  • 85
  • 116
4
votes
1 answer

Fire an Outlook 2003 macro when the user creates a new blank message

I found events that fire when the user receives a message, or hits the send button, but nothing that fire when the user creates a blank, new email.
Trindaz
  • 17,029
  • 21
  • 82
  • 111
4
votes
4 answers

Delete a mailitem permanently in outlook

I'm trying to delete a mailitem using the outlook API. Like the following, Dim objMail For each objMail in objFolder.Items objMail.Delete Next Obviously, deleting an item straight away is to simple. Outlook just move it into the "Deleted Items"…
Machinegon
  • 1,855
  • 1
  • 28
  • 45
4
votes
3 answers

php mail headers for outlook - the email arrives empty to outlook, and great to gmail to yahoo

mail($to, $subject, $message, $headers); the $header is: From: from-me@mymail123.com Reply-To: from-me@mymail123.com Content-Type: text/html; charset=iso-8859-1 X-Mailer: PHP/5.2.5 MIME-Version: 1.0 I built $header with those line and I changed…
sdfor
  • 6,324
  • 13
  • 51
  • 61
1
2 3
9 10