LizardKingSchwing
Programmer
Right so what I want to do is use the RemoveNewMailIcon vba code from link below to remove the Outlook New Mail Envelope when a mail with [Norton Antispam] in the
Subject comes in
Currently I have it set as follows
Private Sub Application_NewMail()
RemoveNewMailIcon
End Sub
What I need is some vba code to
Private Sub Application_NewMail()
'Check 1st the mails subject
'see if it has the string [Norton Antipam]
'if it does call the below
RemoveNewMailIcon
'if not then do nothing
End Sub
Anyone know how to do this or have any tips ,hints etc.
Cheers
LK--<
Subject comes in
Currently I have it set as follows
Private Sub Application_NewMail()
RemoveNewMailIcon
End Sub
What I need is some vba code to
Private Sub Application_NewMail()
'Check 1st the mails subject
'see if it has the string [Norton Antipam]
'if it does call the below
RemoveNewMailIcon
'if not then do nothing
End Sub
Anyone know how to do this or have any tips ,hints etc.
Cheers
LK--<