Hi all, I had come across this code at slipstick.com:

-----------------------
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim intRes As Integer
Dim strMsg As String
strMsg = "Do you really want to send this message?"
intRes = MsgBox(strMsg, vbYesNo + vbDefaultButton1, "Confirm Send ")
If intRes = vbNo Then
Cancel = True
End If
End Sub
-----------------------

Which works with Outlook 2000/2002 and prompts the user for a YES/NO response to confirm if they want to send the message to avoid missent emails. This is a great script but there is one thing I was hoping would be posisble with it. I would like it to be only give this prompt when an external email address is in an of the "to, cc, bcc" fields. When there are only intneral address in these fields it would ideally not present this prompt but just send.

Has anyone seen scripting that can do this or does anyone have any idea how to script this? Thanks!