I have three accounts in Outlook and wish to use a specific one for messages from VFP using PostCast.
I am using the following code with some passed parameters
Many thanks
Eric
I am using the following code with some passed parameters
Code:
o=createobject("outlook.application")
oitem=o.createitem(0)
oitem.subject=alltrim(bodymsg1)
oitem.to=sendingto
oitem.body=alltrim(bodymsg2)
oitem.send
o=.null.
Many thanks
Eric