C
CK
Good Morning All,
Quick question. I have an ADO recordset of email addresses. I need to
create an email to these people and I want them to be in the BCC field.
What is the beat approach to this? I had something like
Function NewMail(r as ADO.Recordset)
dim mail as New Outlook.MailItem
set mail = Application.CreateItem(olMailItem)
'this is where I get stuck I would like to pass this function a recordset
and loop through it, and add each 'email address to the BCC field, then
display the item. Any suggestions?
End Function
Any advice is always appreciated. Thanks in Advance.
Chris
Quick question. I have an ADO recordset of email addresses. I need to
create an email to these people and I want them to be in the BCC field.
What is the beat approach to this? I had something like
Function NewMail(r as ADO.Recordset)
dim mail as New Outlook.MailItem
set mail = Application.CreateItem(olMailItem)
'this is where I get stuck I would like to pass this function a recordset
and loop through it, and add each 'email address to the BCC field, then
display the item. Any suggestions?
End Function
Any advice is always appreciated. Thanks in Advance.
Chris