G
Guest
I have a simple trouble ticket tracker in Access that I am trying to send
emails from. The message of the email is from a report. I have no problem
getting the emails out, but they all just show up as attachments, not inline
in the message itself. Previously, about half my team had the message in the
body, the others in an attachment. Then it suddenly stopped, and now no one
has it in the message body. Is there a way to code the SendObject command to
include data from a report in the message body of the email, preferably with
tables and/or formatting intact? I'm not sure if there might be a setting in
Outlook that needs to be changed too, but we couldn't find one.
The code that creates the message is:
DoCmd.SendObject acSendReport, "rptResponseReport", , , , , "CDT Ticket " &
Me.TicketNumber.Value & " " & Me.cboStatus.Value, , True
Thanks.
emails from. The message of the email is from a report. I have no problem
getting the emails out, but they all just show up as attachments, not inline
in the message itself. Previously, about half my team had the message in the
body, the others in an attachment. Then it suddenly stopped, and now no one
has it in the message body. Is there a way to code the SendObject command to
include data from a report in the message body of the email, preferably with
tables and/or formatting intact? I'm not sure if there might be a setting in
Outlook that needs to be changed too, but we couldn't find one.
The code that creates the message is:
DoCmd.SendObject acSendReport, "rptResponseReport", , , , , "CDT Ticket " &
Me.TicketNumber.Value & " " & Me.cboStatus.Value, , True
Thanks.