Posted By


samurai on 12/14/14

Tagged


Statistics


Viewed 143 times
Favorited by 0 user(s)

Outlook Popup Message


/ Published in: VB.NET
Save to your folder(s)

Use the below macro within Outlook to run as a script as part of an email rule. This will allow you to run any external script or program.


Copy this code and paste it in your HTML
  1. Sub message(itm As Outlook.MailItem)
  2. Dim shell
  3. Set shell = CreateObject("wscript.shell")
  4. shell.Run "C:\msg.html"
  5. Set shell = Nothing
  6. End Sub

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.