Re: Access 2003
I have a line of code in my app that sends an email after these strings
are populated: gblSendTo, gblEMailSubject , and gblEMailBody.
DoCmd.SendObjec t , "", "", gblSendTo, "", "", gblEMailSubject ,
gblEMailBody, False, ""
Currently, when the email is sent internally in our company, the "From:"
in the email is my own personal work address.
I did not see in the syntax (unless I missed it) where the "From:" can
be set in the "SendMail" object in Access.
There is a department address we can use as the "From".
How do I change my code so that when the users see the email sent by the
app, it shows up as
"From: <DeptName@compa ny.comand not from "MyName@company .com"?
Thanks.
(I don't know if this matters or not, but we useMicrosoft Exchange
Server for internal email.)
*** Sent via Developersdex http://www.developersdex.com ***
I have a line of code in my app that sends an email after these strings
are populated: gblSendTo, gblEMailSubject , and gblEMailBody.
DoCmd.SendObjec t , "", "", gblSendTo, "", "", gblEMailSubject ,
gblEMailBody, False, ""
Currently, when the email is sent internally in our company, the "From:"
in the email is my own personal work address.
I did not see in the syntax (unless I missed it) where the "From:" can
be set in the "SendMail" object in Access.
There is a department address we can use as the "From".
How do I change my code so that when the users see the email sent by the
app, it shows up as
"From: <DeptName@compa ny.comand not from "MyName@company .com"?
Thanks.
(I don't know if this matters or not, but we useMicrosoft Exchange
Server for internal email.)
*** Sent via Developersdex http://www.developersdex.com ***
Comment