Results 1 to 10 of 10

Thread: Review all Email Recipients before Sending

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #3
    Quote Originally Posted by rallison0902 View Post
    will list all the recipients for one last review
    As a small add-on to Aussiebear's response, for the list of recipients, use the Item object which will be a MailItem you could add a string that contains the list that is displayed with the message asking if they are all correct.

    Dim recipientList as String
    Dim rp as Outlook.Recipient
    recipientList = ""
    For Each rp in Item.Recipients
        recipientList = recipientList & rp.Name & vbCrLf
    Next
    Prompt = recipientList & "Are you sure you entered all correct recipients?"
    This code hasn't been tested and is just an example.
    Last edited by Aussiebear; 02-24-2025 at 03:36 AM.

Posting Permissions

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