I am in the middle of:

With olMail
.To = "RECONCILE1"
.CC = "RECONCILE2"
'Add the subject of the mail message
.Subject = "ACCOUNTING"
'Create some body text
.Body = "Text"
.Attachments.Add ActiveWorkbook.FullName

.Send
End With

I want to give Outlook some time to resolve the names of the various members of the two Personal Distribution Lists that I specified; given sufficient time, Outlook will do just that. I want to put some variation of 'Application.OnTime +
TimeValue("...")' immediately prior to '.Send'; I have seen such variation somewhere but I do not remember where. Can anyone help?

TIA,
Chuckles123