
Originally Posted by
rallison0902
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.