Where will the file names come from? Will they be different for each transmittal? If the names are always the same, maybe just have 6 add lines, like:
Code:
Dim appOutLook As Outlook.Application
Dim MailOutLook As Outlook.MailItem
Set appOutLook = CreateObject("Outlook.Application")
Set MailOutLook = appOutLook.CreateItem(olMailItem)
With MailOutLook
.BodyFormat = olFormatRichText
.To = "email address"
''.cc = ""
''.bcc = ""
.Subject = "text here"
.HTMLBody = "text here"
.Attachments.add ("path\filename1")
.Attachments.add ("path\filename2")
.Attachments.add ("path\filename3")
.Attachments.add ("path\filename4")
.Attachments.add ("path\filename5")
.Attachments.add ("path\filename6")
''.DeleteAfterSubmit = True 'This would let Outlook send the note without storing it in your sent bin
.send
End With