Why won't OutputTo work?
strFilePath = "C/Docs And Set/WhatEverYouChoose.doc"
DoCmd.OutputTo acReport, "ActualReportName", strFilePath
Dim appOutLook As Outlook.Application, itm As Object
20 Set appOutLook = GetObject(, Outlook.Application)
30 Set itm = appOutLook.CreateItem(olMailItem)
50 With itm
60 .To = "JoeBlo@Wherever.com"
70 .Subject = "Yo Joe!"
80 .Body = ""
100 .Attachments.Add strFilePath
'.Display
120 .sEnd
130 End With
140 Set appOutLook = Nothing
150 Set itm = Nothing