I would like to add a message header to any incoming email where the TO & FROM are identical. I'm guessing that I would have to use a script to do this as there isn't anything appropriate in the Filters - correct ?
If so, how difficult would it be to write a script like this ?
Filter emails where TO: & FROM: are the same
-
- Site Admin
- Posts: 9378
- Joined: Mon Mar 22, 2004 4:44 am
- Location: Melbourne, Victoria, Australia
Hi,
Try this:
Try this:
Code: Select all
FilterResult=0
If CriteriaMet([ME_FROM],"*email@address*") AND CriteriaMet([ME_TO],"*email@address*") THEN
FilterResult=1
End If
Regards,
Ian Margarone
MailEnable Support
Ian Margarone
MailEnable Support
-
- Posts: 2
- Joined: Tue Oct 28, 2008 6:55 am