[Outlook] Permanently changing email subject
I need to write a macro that will permanently change the subject of received mails in my account. At the moment, I'm using a simple code
Code:
MyMail.Subject = MyMail.Subject & "READ"
However, every time I restart the macro now, the subject lines are changed back to their original format.
How can I get the mail subjects to change permanently?
Re: [Outlook] Permanently changing email subject
Try this:
Code:
MyMail.Subject = MyMail.Subject & "READ"
myMail.Save