OK, here we do send PDF via Email. The Report must first have been saved after manually sending it to PDF form, Then you can succeed with code. It isn't very reliable sometimes and you need to buy and link in a PDF library from a third party vendor. "ACG PDF and Mail Library" => "PDF and Mail Library.mde" shows in my code references.
After creation then you send with more code to outlook express etc...
(You may also have to have a ref set to the WinFax Automation Server file wfctl32.tlb.....)
Here are the code clips......................
'The following code sample with generate a PDF document from a report named
'"Report1" using the PDFWriter print driver.
'Copyright © 1997-2000 ATTAC Consulting Group
Dim objPDF As New PDFClass
sReport = "Report1"
With objPDF
.ReportName = sReport
.ImageType = "PDF"
.PDFNoShowPropDlg = True
.OutputFile = sPath & sExtPath & sFile
If bLandScape Then 'Use=True, landscape=2, (letter=1,legal=5)
.AdvancedRptProp True, 2, 5
End If
If sWhere <> "" Then
.ReportWhere = sWhere
End If
.PrintImage
lngResult = .Result
End With
---------------------------------------------
Dim Email As clsEmail
Dim Attachment As clsFile
Set Email = New clsEmail
Set Attachment = New clsFile
If Not IsMissing(FileName) Then
Attachment.FileName = CStr(FileName)
Else
Attachment.FileName = CStr("SomeFileName"

End If
Email.MessageSubject = "Subject Here"
Email.MessageText = "Body of the text, A memo maybe?"
Email.RecipientAddress = "EMailAddress"
Email.RecipientName = "ClientRecipientCompany"
Email.Attachments.Add Attachment
Email.JobID = Trim(rs!CustomerID) & Trim(rs!ReportSuffix)
Email.Send
Set Email = Nothing
Set Attachment = Nothing
That's all I got, except to say the product has more examples and directions to give..
If you need more help search the internet for the specialized data types shown above......