Consulting

Results 1 to 3 of 3

Thread: Warning message when sending mail

  1. #1
    VBAX Regular
    Joined
    Mar 2010
    Posts
    15
    Location

    Warning message when sending mail

    Hi friends,

    I want set a message box "Please check once before sending" on mail sent item event. When we click sent button the above message should display and allow the user to edit mail. I am not good at vba. Please kindly help with required code this functionality.

    Thanks & Regards
    Ramesh

  2. #2
    VBAX Tutor Benzadeus's Avatar
    Joined
    Dec 2008
    Location
    Belo Horizonte, Brazil
    Posts
    271
    Location
    Put on your ThisOulookSession area:
    [VBA]Dim blCanSend

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

    If blCanSend Then
    blCanSend = False
    Else
    MsgBox "Please check once before sending", vbCritical
    blCanSend = True
    Cancel = True
    End If

    End Sub[/VBA]

  3. #3
    VBAX Regular
    Joined
    Mar 2010
    Posts
    15
    Location
    Benzadeus vbmenu_register("postmenu_231497", true);


    Thanks you very much for you reply.

    Regards
    Ramesh

Posting Permissions

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