python-o365 icon indicating copy to clipboard operation
python-o365 copied to clipboard

The subject of the e-mail cannot be changed.

Open darkphex opened this issue 4 years ago • 2 comments

Dear O365 Team,

I have the problem that I can change and output the message subject in my code, but unfortunately this change is not executed and saved in Outlook.

Is this not possible, or can it be bypassed somehow?

else: print ("Checking...") message.mark_as_read() message.subject = subject + " // TEST" message.save_message() print(message.subject)

darkphex avatar Jun 25 '21 16:06 darkphex

For now, the subject can only be modified when the message is a draft.

alejcas avatar Sep 03 '21 09:09 alejcas

Or make use of my workaround in https://github.com/O365/python-o365/issues/576 ;-)

joelwiesmann avatar Sep 09 '21 05:09 joelwiesmann