J
John
Hi
Outlook 2003 with Exchange 2003. I am using the below code from within
Access to send emails via outlook.
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
.To = "(e-mail address removed)"
.Subject = "Subject Here"
.HTMLBody = "This is the body text..."
.Save
End With
The problem is that instead of messages being saved in Draft folder, they
are ending up saved in Inbox. What is the problem and how can I fix it?
Thanks
Regards
Outlook 2003 with Exchange 2003. I am using the below code from within
Access to send emails via outlook.
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
.To = "(e-mail address removed)"
.Subject = "Subject Here"
.HTMLBody = "This is the body text..."
.Save
End With
The problem is that instead of messages being saved in Draft folder, they
are ending up saved in Inbox. What is the problem and how can I fix it?
Thanks
Regards