K
Kevin Bruce
Each month, I send out reminders to between thirty and fifty performing
artists advising them of their schedule for the month following. Currently,
these reminders are sent as .rtf attachments. I would rather the content of
the .rtf report appear in the body of the email message. My code at present
is as follows:
Dim stDocName As String
txtEmailReportTo.SetFocus
stDocName = "rptBookingArtistMonthlyReminder"
DoCmd.SendObject acReport, stDocName, , Me!txtEmailReportTo.Text, , ,
"Bookings Reminder"
I assume that in the DoCmd.SendObject line I would have to add something
like:
DoCmd.SendObject acReport, stDocName, PUT SOMETHING HERE?,
Me!txtEmailReportTo.Text, , , "Bookings Reminder", PUT SOMETHING HERE?
Am I on the right track?
Thanks in advance for any help.
_Kevin
artists advising them of their schedule for the month following. Currently,
these reminders are sent as .rtf attachments. I would rather the content of
the .rtf report appear in the body of the email message. My code at present
is as follows:
Dim stDocName As String
txtEmailReportTo.SetFocus
stDocName = "rptBookingArtistMonthlyReminder"
DoCmd.SendObject acReport, stDocName, , Me!txtEmailReportTo.Text, , ,
"Bookings Reminder"
I assume that in the DoCmd.SendObject line I would have to add something
like:
DoCmd.SendObject acReport, stDocName, PUT SOMETHING HERE?,
Me!txtEmailReportTo.Text, , , "Bookings Reminder", PUT SOMETHING HERE?
Am I on the right track?
Thanks in advance for any help.
_Kevin