Microsoft Outlook is a personal information manager from Microsoft, available both as a separate application as well as a part of the Microsoft Office suite.
32
votes
13answers
27k views
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 ...
45
votes
8answers
19k views
Outlook autocleaning my line breaks and screwing up my email format
I'm sending an email using the dotnet framework. Here is the template that I'm using to create the message:
Date of Hire: %HireDate%
Annual Salary: %AnnualIncome%
Reason for Request: ...
19
votes
13answers
21k views
How do I format a String in an email so Outlook will print the line breaks?
I'm trying to send an email in Java but when I read the body of the email in Outlook, it's gotten rid of all my linebreaks. I'm putting \n at the ends of the lines but is there something special I ...
29
votes
6answers
39k views
MailTo with HTML body
My problem goes something like this:
A client receives an email sent by Exchange Server.
In the mail he has a formatted body with HTML with a couple of links that have
href='mailto:etc...'
My ...
10
votes
7answers
10k views
Read from .msg files
I need to read from Outlook .MSG file in .NET without using COM API for Outlook (cos it will not be installed on the machines that my app will run). Are there any free 3rd party libraries to do that? ...
3
votes
2answers
13k views
How to copy Outlook mail message into excel using VBA or Macros
This is my first post.
I'm a newbie in VBA and Macros. If someone helps me with VBA code and macros, it will be helpful.
Daily I'll receive around 50-60 mails with one standard subject: "Task ...
2
votes
1answer
761 views
Outlook 2010 Com addin - NewExplorer never fires
For some reason in my app my FolderSwitch works on the main Explorer that opens with the application but the NewExplorer event never fires, so obviously the FolderSwitch event won't fire on a new ...
15
votes
2answers
16k views
Sending Outlook meeting requests without Outlook?
I just wonder if it is possible to send Meeting Requests to people without having Outlook installed on the Server and using COM Interop (which I want to avoid on a server at all costs).
We have ...
12
votes
6answers
22k views
.NET: Get all Outlook calendar items
How can I get all items from a specific calendar (for a specific date).
Lets say for instance that I have a calendar with a recurring item every Monday evening. When I request all items like this:
...
10
votes
7answers
21k views
How to avoid Outlook security alert when reading outlook message from C# program
I have a requirement of reading subject, sender address and message body of new message in my Outlook inbox from a C# program. But I am getting security alert 'A Program is trying to access e-mail ...
7
votes
4answers
6k views
Create a .eml (email) file in Java
Anybody knows how to do this? I got all the information of the email (body, subject, from , to, cc, bcc) and need to generate an .eml file out of it.
4
votes
2answers
6k views
Get unread Mails from Outlook
Is there any way to get all mail from an specific Folder into my Application?
6
votes
1answer
5k views
How can I create an Outlook PST file using .Net?
I'm writing an app that will manipulate Outlook data. I want to make a backup of that data first and am hoping I could just loop through the contact/calendar items, etc and write them out to a PST ...
1
vote
3answers
1k views
How to use VB6 debugger on Outlook property page OCX?
Using VB6, I have created an Outlook plugin, that has a property page. The property page is an OCX control.
When I compile the project to an OCX file, and then run OUTLOOK, things work fine: I am ...
3
votes
1answer
490 views
What storage should I use for a outlook plugin?
What storage system should I use , If i'm going to deploy a outlook plugin with VSTO ?
Is it possible to use outlook's , which is for email ?
UPDATE
I thought about SQL Express , but I think I ...