I am using this method for sending an email from Access.
I would like to change the FROM option to default to a secondary account I have privilages for. Any way to do this? .from = does not work.




[VBA]Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon

set OutMail = OutApp.CreateItem(0)
With OutMail
.to = ""

.from = "Other Email Account"[/VBA]