Or you can add a macro to Outlook, add a button to the ribbon of the message window and assign the macro to the button.
Sub chkDuplicates()
Dim i As Integer, j As Integer
Dim olMail As MailItem
Dim olRecip1 As Recipient, olRecip2 As Recipient
Dim colRecipients As Recipients
Set olMail = ActiveInspector.CurrentItem
Set colRecipients = olMail.Recipients
For i = colRecipients.Count To 1 Step -1
Set olRecip1 = colRecipients.Item(i)
For j = (i - 1) To 1 Step -1
Set olRecip2 = colRecipients.Item(j)
If olRecip1.Address = olRecip2.Address Then
olRecip1.Delete
Exit For
End If
Next
Next
End Sub
Are you familiar with how to add macros to Outlook?
can you describe how you enter the email addresses in the to/cc/bcc boxes?
Joop