G
Guest
How do I send an email to multiple users via the "SendObject" function?
schasteen said:DoCmd.SendObject acSendReport, "ReportName", , "(e-mail address removed);
(e-mail address removed)",,,"What text you want " & Me![Control]
Secret Squirrel said:Actually I have one more question. Suppose I want to put some text along with
a value from a field on the subject line. How would I write that in the
"SendObject" function?
Secret Squirrel said:Thank you very much!
schasteen said:DoCmd.SendObject acSendReport, "ReportName", , "(e-mail address removed);
(e-mail address removed)",,,"What text you want " & Me![Control]
Secret Squirrel said:Actually I have one more question. Suppose I want to put some text along with
a value from a field on the subject line. How would I write that in the
"SendObject" function?
:
DoCmd.SendObject acSendReport, "ReportName", , " 'Chasteen, s'; 'Chasteen,
s'; 'Chasteen, s' "
or
DoCmd.SendObject acSendReport, "ReportName", , "(e-mail address removed);
(e-mail address removed)"
:
How do I send an email to multiple users via the "SendObject" function?
schasteen said:No problem. Forgot, if you want text after the control referance:
What text you want " & Me![Control] & " some more text"
Secret Squirrel said:Thank you very much!
schasteen said:DoCmd.SendObject acSendReport, "ReportName", , "(e-mail address removed);
(e-mail address removed)",,,"What text you want " & Me![Control]
:
Actually I have one more question. Suppose I want to put some text along with
a value from a field on the subject line. How would I write that in the
"SendObject" function?
:
DoCmd.SendObject acSendReport, "ReportName", , " 'Chasteen, s'; 'Chasteen,
s'; 'Chasteen, s' "
or
DoCmd.SendObject acSendReport, "ReportName", , "(e-mail address removed);
(e-mail address removed)"
:
How do I send an email to multiple users via the "SendObject" function?