I am using exchangelib to process emails in python. When I execute the following code,Iget UTC datetime.How can I get the local date and time of the emails received as per the local timezone?
for email_message in outlook_inbox: #outlook_inbox is the object poining to my inbox
print(email_message .datetime_received)