Need macro to remove "follow up" flag from outgoing mails

  • Thread starter Thread starter Vince
  • Start date Start date
V

Vince

That's it.

I would be eternally grateful if someone could post a
simple macro.

Thankyou.
Vince.
 
Code in the Application_ItemSend event in the ThisOutlookSession class
module:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
On Error Resume Next
If Item.ReminderSet Then
Item.ReminderSet = False
Item.Save
End If
End Sub
 
Back
Top