Overriding the Item_Send in Outlook Custom Form

  • Thread starter Thread starter David W
  • Start date Start date
D

David W

I have created a Custom Form in Outlook. I am trying to overload the
Item_Send event so I can replace the MailItem with a SafeMailItem
(using the Redemption.dll) in order to get around the winmail.dat
issue with attachments. However, the custom form is still being sent
and the attachments still appear in the winmail.dat. Any
suggestions??

Thanks!

David.
 
Function Item_Send()
' don't send the item
Item_Send = False
End FUnction
 
Back
Top