Custom Scripts in Rules Wizard

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

Guest

The new rules wizard has as an action to a rule that meets certain criteria to "RUN A SCRIPT", I need to find out what my options are for these scripts. What I'm trying to do is this, I need to be notified on my cell phone if certain people email me. I know I can forward incoming emails to my mobile's email address but since the size of message my phone can handle is only so many characters, and the sender sends a very long email, I get 4-5 notifications on my mobile. I would just like the first 50 characters or just a message saying, "You have received new email from ...."

Any help would be appreciated
 
The "script" is in fact a VBA routine with this syntax:

Sub MyScript(objMail as MailItem)
' do stuff with objMail
End Sub

See http://www.slipstick.com/dev/vb.htm if you need more background on Outlook VBA.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
Back
Top