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