Rule to move old messages

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to create a rule where one of the designators is to wait until
the message is X days old.

""for messages that have "final notice" in subject, and are "30" days old,
move to "trash" folder.""

There is a "specific dates" option, but it doesn't accept "last week" as a
time description.

Thanks,
Jeff
 
Hi Jeff,

I think you´d need to create your own rule written in VBA. Depending on
your version you could use the Run-a-script rule or the Inbox Items´
ItemAdd event.

The check the date in question with:

If DateDiff("d", YourDate, Date) >= 30 Then
' do s.th.
endif
 
Back
Top