Dim objOutlook
Dim ItmNewEmail
Dim folderspec As String
Dim filedate, fnamedate As String
Dim fdir As String
Dim OutputFileName As String
filedate = Date
fnamedate = Format(filedate, "mmddyy")
OutputFileName = "somefilename"
fdir = "somedirectory\"
Set objOutlook = CreateObject("Outlook.Application")
Set ItmNewEmail = objOutlook.CreateItem(olMailItem)
With ItmNewEmail
.To = "someadd@domain.com"
.CC = "somemoreadds@domain.com"
.Subject = "Your Subject Reports " & filedate
.Body = "Attached please find today's reports." _
& Chr(13) & Chr(13) & "Thank You."
[b].Attachments.Add [/b](fdir & OutputFileName)
[b].Attachments.Add [/b]fdir & "some other file" & fnamedate & ".xls"
.Send
'send files and notification
End With