Redemption not working with Outlook 2002 XP SP3

G

Guest

Hi, I can't get rid of the security prompt "A program is trying to access addresses stored in Outlook...."
Here is my code

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean
Dim SafeItem As Redemption.SafeMailIte
Set SafeItem = CreateObject("Redemption.SafeMailItem"
SafeItem.Item = Ite
Dim one_record As Strin
one_record = "Recipient: " + SafeItem.Item.T
Open "c:\temp\ol_log.txt" For Output As #
Print #1, one_recor
Close #

End Su

HELP
 
S

Sue Mosher [MVP-Outlook]

SafeItem.Item.To gets the To property from the original Outlook item. Use
SafeItem.To to get it from the Redemption object.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Tavo said:
Hi, I can't get rid of the security prompt "A program is trying to access
addresses stored in Outlook....".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top