1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
With OutMail .To = strTo .Subject = strSubj .Body = strText 'Add attachments from array For i = 0 To UBound(strAttach,2) If Not IsMissing(strAttach(1, i)) Then .attachments.Add (strAttach(1, i)) Next .Display .BodyFormat = 2 'olFormatHTML End With