BlindCopyTo not working

Hi

I have an agent that creates documents in the mailbox database. This method has been working well for some time but a new requirement to add people on to the ‘blind copy to’ list isn’t working.

This is the code:

Set emaildoc = mailboxDB.createdocument

emaildoc.Form = “Memo”

emaildoc.PostedDate = Now

emaildoc.SendTo = doc.mmSendTo

emaildoc.CopyTo = doc.mmCopyTo

emaildoc.BlindCopyTo = doc.mmBlindCopyTo

emaildoc.ReplyTo = doc.mmReplyTo(0)

emaildoc.From = doc.mmSentFrom(0)emaildoc.Principal = doc.mmSentFrom(0)

emaildoc.Recipients = doc.mmSendTo

emaildoc.Subject = doc.mmSubject(0)

emaildoc.Body = doc.mmBody(0)

Call emaildoc.save(True,True)

Is there anything special about the BCC list that I should know, or can anyone see anything odd in my code?

Thanks

Paul

Subject: RE: BlindCopy

What is not working. The people in the BCC field are not getting the e-mail?

I would check what the mmBlindCopy field it set too. Is it multiple value (I’m guessing yes) and the field is set that way?

To test it, write your mmBlindCopy value to the CC field to test it and see if it works then.