G
Guest
Hello all,
Got a compatibility question for ya.
I developed an access application that has sends email using outlook. My
code is given below, can I still used this code after the IT dept. upgrade to
MS Outlook 2007?
Thanks
----------------------
Dim App as Object
Dim Mail as Object
Set App = CreateObject("Outlook.Application")
App.Session.Logon
Set Mail = App.CreateItem(0)
With Mail
.To = emailRecipient
.Subject = subjectOfEmail
.Body = bodyOfMessage
.Send
End With
------------------
Got a compatibility question for ya.
I developed an access application that has sends email using outlook. My
code is given below, can I still used this code after the IT dept. upgrade to
MS Outlook 2007?
Thanks
----------------------
Dim App as Object
Dim Mail as Object
Set App = CreateObject("Outlook.Application")
App.Session.Logon
Set Mail = App.CreateItem(0)
With Mail
.To = emailRecipient
.Subject = subjectOfEmail
.Body = bodyOfMessage
.Send
End With
------------------