Results 1 to 10 of 10

Thread: Review all Email Recipients before Sending

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,510
    Location
    Try this one
    Option Explicit
    
    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
        Dim Prompt As String
        Prompt = "Are you sure you entered all correct recipients?"
        If MsgBox(Prompt, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check for recipients") = vbNo Then
            Cancel = True
        End If
    End Sub
    Last edited by Aussiebear; 02-24-2025 at 03:36 AM.
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •