Good Afternoon,
I have found a Function to automate Emails from Outlook through Access. I was curious if there was a way to change the sender information when sending the email, specifically just name field? My code only delivers the originators information, rightfully so, since the mail was sent from that senders desktop. Is there a way to declare a sender NAME prior to sending the email?
So, in the recipients Outlook inbox I would like to see...
Awesome Access Project
INSTEAD OF
Smith, John
Here is some code I have thusfar.
THANKS AGAIN!
I have found a Function to automate Emails from Outlook through Access. I was curious if there was a way to change the sender information when sending the email, specifically just name field? My code only delivers the originators information, rightfully so, since the mail was sent from that senders desktop. Is there a way to declare a sender NAME prior to sending the email?
So, in the recipients Outlook inbox I would like to see...
Awesome Access Project
INSTEAD OF
Smith, John
Here is some code I have thusfar.
Code:
With appOutlookMsg
Set appOutlookRec = appOutlookMsg.Recipients.Add(MyEmail)
appOutlookRec.Type = olTo
.Subject = "QII Database Reminder"
.Body = "This is just a test."
'.Display
.send
End With
Comment