I am trying to send a simple email from MSaccess2000 using Redemption. I am on windows10 so cannot load outlook2000 (as I understand it won't work on 64bit)
I have downloaded and installed Microsoft Exchange Server MAPI Client.
Using the code:
Dim SafeItem, oItem
Set SafeItem = CreateObject("Redemption.SafeMailItem") 'Create an instance of Redemption.SafeMailItem
Set oItem = Application.CreateItem(0) 'Create a new message
SafeItem.Item = oItem 'set Item property
SafeItem.Recipients.Add "[email protected]"
SafeItem.Recipients.ResolveAll
SafeItem.Subject = "Testing Redemption"
SafeItem.Send
But it stops on CreateItem and states 'Method or data member not found'
Basically, I have no idea what I am doing, so please keep any answers simple!