C# Code to Delete Mail After Send from Outlook Sent Item
When you send mail using outlook, you can see that mail in sent Item folder. If you have automated your outlook mail sending process using C#, you can see all your mails in sent item […]
When you send mail using outlook, you can see that mail in sent Item folder. If you have automated your outlook mail sending process using C#, you can see all your mails in sent item […]
Here is a C# code example that will help you to find the mail ID of sender from Outlook Mail Item Object. We use SenderEmailType property of Outlook MailItem object to determine the email type […]
Here is an example C# code that helps you work on attachments in an outlook mail item. You can use Attachments property of Outlook MailItem object for saving attached file in outlook mail item by […]
This article describes how to create a C# program that reads mails from your outlook inbox. You can do this using the Microsoft.Office.Interop.Outlook.dll. Here is the step by step procedure of creating automation of reading […]
If you are automating outlook, it is good practice in your C# program to ensure that outlook is opened. If outlook is not opened, your code will not work as expected. Below C# code snippet […]
This article demonstrates an example of sending outlook emails automatically by using C# code snippet. For this, you need to add a reference to the dynamic link library of Outlook called Microsoft.Office.Interop.Outlook.dll. Follow the below-given […]
You receive the following warning message as Outlook popup when an application tries to send an email from Outlook. “A program is trying to send an e-mail message on your behalf. If this is unexpected, […]