I am using this code:
Private Sub btnSendWeekly_Click()
DoCmd.SendObject acSendReport, "rptWeekly", acformatPDF, "Larry.CurlyMoe@test.org", , , _
"Areas", "Please attach the file named AreaEmail.accdb located in C:\Areas\ folder and click the Send button."
End Sub
This opens a report with the message telling them how to attach the AreaEmail.accdb file. Is there a way to have it already attached when the email opens? I would like for the users to just open the email and hit the Send button.
Thank you.
Private Sub btnSendWeekly_Click()
DoCmd.SendObject acSendReport, "rptWeekly", acformatPDF, "Larry.CurlyMoe@test.org", , , _
"Areas", "Please attach the file named AreaEmail.accdb located in C:\Areas\ folder and click the Send button."
End Sub
This opens a report with the message telling them how to attach the AreaEmail.accdb file. Is there a way to have it already attached when the email opens? I would like for the users to just open the email and hit the Send button.
Thank you.