CC in Redemption

  • Thread starter Thread starter tguenther
  • Start date Start date
T

tguenther

How do I get the CC values from an Outlook Item without the E-mail
security warning displaying. I have a custom mail message form and can
get the subject, body without the warning and then I create a Mail
Item using Outlook Redemption to deliver the emails without the
Warning message.
 
Hello,


How do I get the CC values from an Outlook Item without the E-mail
security warning displaying. I have a custom mail message form and can

You can encapsulte the Outlook.Item in a rRedemtion Item.

Create a SafeMailItem Object and assign the Item Property.

e.g.

Dim objSafeMail As Redemtion.SafeMailItem
Dim objOutlookMail As ??

Set objSafeMail = New Redemtion.SafeMailItem
Set objSafeMail.Item = objOutlookMail
get the subject, body without the warning and then I create a Mail
Item using Outlook Redemption to deliver the emails without the
Warning message.

Greetings.

P.S. don't talk too much about redemtion in MS Newsgroups or they will
disable
the use of redemtion also :-)
 
Back
Top