I am using VBA code to create a PDF file from a Access 2010 report and then going on to use it to attach to an email for sending to our clients.

The code is all working well, although my issue is that the file size is around 500kb. For a single page report with no background this file size is
ridiculous.
Here is my code snippet ...
Private Sub PrintEINVtoPDF_Click()
strReport = "E-Invoice-current"
strReportFile = "S:\Invoices\E-Invoice " & [Invoice Number] & ".pdf"



DoCmd.OutputTo objecttype:=acOutputReport, _
objectname:=strReport, _
outputformat:=acFormatPDF, _
outputfile:=strReportFile

Set strReport = Nothing
Set strReportFile = Nothing
DoCmd.RunMacro "Notepad-Printed-E-Invoice-PDF"
End Sub


Any ideas on how I can reduce the file size to a more manageable size?