Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fatrainbowpony/outlook-api
Library for work with the Outlook Interop API
https://github.com/fatrainbowpony/outlook-api
Last synced: about 2 months ago
JSON representation
Library for work with the Outlook Interop API
- Host: GitHub
- URL: https://github.com/fatrainbowpony/outlook-api
- Owner: FatRainbowPony
- License: mit
- Created: 2023-05-18T03:50:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-14T08:33:16.000Z (over 1 year ago)
- Last Synced: 2023-08-16T04:10:54.990Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 652 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Outlook API
This is library for easy work with the Outlook Interop API
## Features
- Sending a mail to one or a group of people with or without attachments.
- Reading mails from various client mail folders with or without loading attachments.
- Getting a list of contacts from various address folders.## Support
Basic information on the Outlook API can be found at:
https://learn.microsoft.com/en-us/dotnet/api/microsoft.office.interop.outlook?view=outlook-pia## Usage
### Connection
Add a reference to `OutlookAPI.dll` and import namespace:
```csharp
using OutlookAPI;
```### Sending a mail to one people
- Without attachments:
```csharp
using OutlookAPI;//...
bool isOpened = Outlook.OpenApp();
if (isOpened)
{
//...
bool isSent = Outlook.SendMail("[email protected]", "Test sending", "This test mail");
if (isSent)
{
//...
}
//...
}//...
```- With attachments:
```csharp
using OutlookAPI;//...
bool isOpened = Outlook.OpenApp();
if (isOpened)
{
//...
bool isSent = Outlook.SendMail("[email protected]", "Test sending", "This test mail", new List { "C:\\Image.png" });
if (isSent)
{
//...
}
//...
}//...
```### Sending a mail to group people
- Without attachments:
```csharp
using OutlookAPI;//...
bool isOpened = Outlook.OpenApp();
if (isOpened)
{
//...
bool isSent = Outlook.SendMail(new List { "[email protected]", "[email protected]" }, "Test sending", "This test mail");
if (isSent)
{
//...
}
//...
}//...
```- With attachments:
```csharp
using OutlookAPI;//...
bool isOpened = Outlook.OpenApp();
if (isOpened)
{
//...
bool isSent = Outlook.SendMail(new List { "[email protected]", "[email protected]" }, "Test sending", "This test mail", new List { "C:\\Image.png" });
if (isSent)
{
//...
}
//...
}//...
```### Reading mails without loading attachments
- Without loading attachments:
```csharp
using OutlookAPI;
using OutlookAPI.Models;//...
bool isOpened = Outlook.OpenApp();
if (isOpened)
{
//...
List mails = OutlookHelper.ReadMails(OutlookHelper.MailFolder.Inbox);
if (mails != null)
{
//...
}
//...
}//...
```- With loading attachments:
```csharp
using OutlookAPI;
using OutlookAPI.Models;//...
bool isOpened = OpenApp();
if (isOpened)
{
//...
List mails = Outlook.ReadMails(OutlookHelper.MailFolder.Inbox, "C:\\");
if (mails != null)
{
//...
}
//...
}//...
```### Getting contacts
```csharp
using OutlookAPI;
using OutlookAPI.Models;//...
bool isOpened = Outlook.OpenApp();
if (isOpened)
{
//...
List contacts = Outlook.GetContacts(OutlookHelper.AddressBook.GlobalAddressList);
if (contacts != null)
{
//...
}
//...
}//...
```