Posted By


samurai on 12/14/14

Tagged


Statistics


Viewed 253 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


You need to login to view comments.