Open and Close outlook from Matlab

12 visualizzazioni (ultimi 30 giorni)
Arnaud Bitoun
Arnaud Bitoun il 9 Gen 2019
Commentato: Arnaud Bitoun il 10 Gen 2019
I am using code to write outlook email;
h = actxserver('outlook.Application');
mail = h.CreateItem('olMail');
mail.To = myemail@email.com;
mail.Subject = 'Subject';
mail.BodyFormat = 'olFormatHTML';
mail.HTMLBody = 'Test';
I am looking how to close and open Outllok. How can I do ?
Thanks in advance,
Arnaud

Risposte (1)

Kojiro Saito
Kojiro Saito il 10 Gen 2019
I think you need to add
mail.Send;
to send email.
In order to close and then open Outlook,
%% Close Outlook
Quit(h)
delete(h)
%% Open Outlook
h = actxserver('outlook.Application');
mapi = h.GetNamespace('mapi');
INBOX = mapi.GetDefaultFolder(6);
INBOX.Display

Prodotti


Release

R2016b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by