Hi All!
I am using the code from the MS site to automatcially create an outlook email from Access. What I can’t find is how to automatically set the From address. The code for sending To someone looks like this:
Set objOutlookRecip = .Recipients.Add(“This Person”)
objOutlookRecip.Type = olTo
Does anyone know how to set the From field in the Outlook message?
As a side question, I’m also trying to build my message body with attachments in the middle of it (For example, Do bla bla bla with this file , then to bla with this file), instead of attachments at the end. I’ve tried splitting up the email and putting the attachments throughout, but they always appear at the end.
Any suggestions are highly appreciated!