Email Multiple reports in same message

  • Thread starter Thread starter broncojim
  • Start date Start date
B

broncojim

Anyone know how to modify the following code to email 3 reports in to the
same person in the same email?

Private Sub Command132_Click()
On Error GoTo Err_Command132_Click

Dim stDocName As String

stDocName = "Transformer Missing Bill of Lading"
DoCmd.SendObject acReport, stDocName

Exit_Command132_Click:
Exit Sub

Err_Command132_Click:
MsgBox Err.Description
Resume Exit_Command132_Click

End Sub
 
Back
Top