How can I display the email address of the account that is logged in Outlook?

1 Ansicht (letzte 30 Tage)
I cannot find something like "get current email Address" with actxserver('Outlook.Application')

Akzeptierte Antwort

Benjamin Großmann
Benjamin Großmann am 23 Apr. 2018
Maybe you can use the SmtpAddress Property of the account object?
clearvars, close all, clc
acx = actxserver('outlook.Application');
acc = acx.Session.Accounts.Item(1); % adapt, if you have more than one account and select a specific one
disp(acc.SmtpAddress)

Weitere Antworten (0)

Kategorien

Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by