Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook Application_ItemSend when sending from other applications

Status
Not open for further replies.

johnisotank

Technical User
Aug 8, 2008
258
GB
Hi, really hope someone can help with this please..

I am using Application_ItemSend to check some things before user sends an e-mail. To keep things simple lets say my code simply shows the user a msgbox with the subject of the email

Code:
Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean)
msgbox(item.subject)
This works fine normally but when an email is created from another application such as Word (with the File>Send To>Mail Recipient feature), my code is completely ignored. I've been searching for days for a solution to this so really hope someone can help with this!

Thanks
John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top