I've been searching on here for this, I apologize if it was already posted. Basically I'm trying to send one e-mail that contains multiple reports from my database. I can get it to mail one report in an e-mail with no problem but was wondering if there was a way to send one e-mail containing multiple reports. Also curious if it's possible to send one report to multiple e-mail address. Below is the "simple" code I have. Simple key word, I'm a beginner
Private Sub report_Click()
On Error GoTo Err_Report_Click
DoCmd.SendObject acSendReport, "property", acFormatHTML, "To", , , "Subject", "message", True
Err_Report_Click:
MsgBox "You've chosen not to send this email "
End Sub
Private Sub report_Click()
On Error GoTo Err_Report_Click
DoCmd.SendObject acSendReport, "property", acFormatHTML, "To", , , "Subject", "message", True
Err_Report_Click:
MsgBox "You've chosen not to send this email "
End Sub