Mark email as read using the exchanger

I am using the Pythons package exchangelib

. How can I mark an email message as read using the exchanger?

I looked at the official GitHub exchange page for my request but couldn't find an answer.

+3


source to share


2 answers


To add joe's comment, you must also "store" the element so that the flag is persistent.



item.is_read = True
item.save()

      

+4


source


item.is_read = True should do the trick, where item is the message you want to mark as read



+1


source







All Articles