Here's how I prevent myself from sending such messages:
Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
If Item.Subject = "" Then
If MsgBox("No Subject: line!" & vbCr & vbCr & _
"Do you want to send this message?", _
vbYesNo + vbExclamation, "Confirm File Send") <> vbYes Then
Cancel = True ' cancel send
End If
End If
End Sub
I suppose you could install the above on every user's machine.
However, you will then have the problem of macro security prompts, so
you better sign the macro.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.