B
boe
I have a client that accidentally sends e-mails before completing them on a
regular basis. They would actually like confirmation before sending any
e-mail.
I found this reference for VB code but I don't know how to edit or apply it
as I know NOTHING about VB
-
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
regular basis. They would actually like confirmation before sending any
e-mail.
I found this reference for VB code but I don't know how to edit or apply it
as I know NOTHING about VB
-
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