give one of these a try
Sending Snapshot format
DoCmd.SendObject acReport, "ReportNameHere", _
"SnapshotFormat*.snp)", "ToMailRecipient", _
"CcMailRecipient", "BccMailRecipient", _
"Subject Line", "MessageTextLineHere Example:Click on this line - \\PathSrvr\Users\ObjectName.htm", False, ""
Sending Rtf format
DoCmd.SendObject acReport, "ReportNameHere", _
"RichTextFormat*.rtf)", "ToMailRecipient", _"CcMailRecipient", "BccMailRecipient", _
"Subject Line", "MessageTextLineHere Example:Click on this line - \\PathSrvr\Users\ObjectName.htm", False, ""
Sending without an attached report
DoCmd.SendObject , "", "SnapshotFormat*.snp)", _
"ToMailRecipient", "CcMailRecipient", _"BccMailRecipient", "Subjectline", "MessageTextLineHere Example:Click on this line - \\PathSrvr\Users\ObjectName.htm", False, ""
RGB