Serendipiter
Programmer
Using Outlook 2007 I am using rules to run a script (shown below) when a new email is received. It stores the value as expected, but then if I move the email from the inbox to another folder and check the value of ReminderTime, I see that the value has been reset. Is that supposed to happen? If so, how do I retain the value when moving the email from the inbox to another folder. If not, is there a workaround?
Public Sub Test(item As Outlook.MailItem)
item.ReminderTime = Now
MsgBox item.ReminderTime
End Sub
Public Sub Test(item As Outlook.MailItem)
item.ReminderTime = Now
MsgBox item.ReminderTime
End Sub