skip to Main Content

I need that when I send an email through Outlook using code written in C# it is sent with the email signature – Artificial Intelligence

private void btnEnviar_Click(object sender, EventArgs e) { try { // Crear una instancia de Outlook Outlook.Application outlookApp = new Outlook.Application(); // Crear un objeto de correo electrónico Outlook.MailItem mailItem = (Outlook.MailItem)outlookApp.CreateItem(Outlook.OlItemType.olMailItem); // Obtener la firma del correo electrónico string signature…

VIEW QUESTION

Visual Studio Code – VSTO Outlook: Catching Send Event

I am trying to create plug-in that will catch any send item and show warning before sent out. Currently I am using the below code private void ThisAddIn_Startup(object sender, System.EventArgs e) { Outlook.Application application = Globals.ThisAddIn.Application; application.ItemSend += new Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);…

VIEW QUESTION
Back To Top
Search