Hi as,
I see nobody has picked up your question. Here is in theory what you need to do. If you get some code together and it does not work for you just post back here and I will help you with your specific question or fault.
I assume you are using Outlook to do this code?
If yes then you need to work with an event of the outlook application
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
End Sub
This above event fires when you send anything.
Thus I would suggest that within this event you do the following;
1. Check that "Item" is a mailobject - it could be a calendar or task or something else.
2. If mailobject then check the to, cc and bcc for your text. use the "instr" function
3. If this comes back as yes then you put raise a message with a yes/no box asking whether they really want to send it
4. If they click NO then you have Cancel = Yes which will cancel the send.
5. Otherwise you let it go through.
Bookmarks