Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook Redemption

Status
Not open for further replies.

mavest

Programmer
Feb 27, 2003
54
US
I am using Outlook Redemption to autmatically send emails on a Windows XP machine with Outlook 2002 (Exchange Server). Of course this is being done to avoid the security patch.

Via using the examples on their website
I've been able to do most of what I want, but I have not been able to figure out how to populate the CC field.

Does anyone know how to populate the cc field with Outlook Redemption??
 
I don't use it myself but post a question on the MS newsgroup, microsoft.public.outlook.program-addins. Dimitri Streblechenko hangs out there and fields the Redemption questions.

Paul Bent
Northwind IT Systems
 
Thanks!!
microsoft.public.outlook.program_addins is definitely the place to be if you're working with Redemption.


FYI here's the code for the CC:
Set safeItem = CreateObject("Redemption.safeMailItem")
safeItem.Item = OL_item
' add CC list to email
For i = LBound(ccList) To UBound(ccList)
If StrComp(ccList(i), &quot;&quot;, vbTextCompare) <> 0 Then
Set ccRecip = safeItem.Recipients.Add(ccList(i))
ccRecip.Type = olCC
End If
Next i
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top