How can I display the email address of the account that is logged in Outlook?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ioonut
el 19 de Mzo. de 2018
Respondida: Benjamin Großmann
el 23 de Abr. de 2018
I cannot find something like "get current email Address" with actxserver('Outlook.Application')
0 comentarios
Respuesta aceptada
Benjamin Großmann
el 23 de Abr. de 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)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Web Services en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!