I was fetching mails locally using win32com library but now I am using exchangelib to do the same but I cannot find a funtion equivelant to this one (item.sender.getExchangerUser().Alias) how can I do this by exchangelib ??
I am also tried this
for mailbox, contact in a.protocol.resolve_names(['anne', 'bart'],
return_full_contact_data=True):
print(mailbox.email_address, contact.display_name)
and it would not help .. any help please ??