property Message.Bcc as String

Retrieves or sets a value that indicates the blind carbon copy recipient's email address's) separated by commas.

TypeDescription
String A string expression that indicates the blind carbon copy recipient's email address's) separated by commas.

Use the Bcc property to add blind carbon copy email addresses to your email message. By default, the Bcc property is empty. If the Bcc is empty, no Bcc field is added to message's header. 

The following sample shows how to add Cc and Bcc fields to your message:

Dim m As Message
Set m = Runtime1.NewMessage
m.Cc = "norton@macrosoft.com,steve@segal.com"
m.Bcc = """Bill Gates"" <bil@macrosoft.com>,bala@segal.com"
If (0 = m.Send("myaccount@usermail.com", "sss@colam.com", "Test", "This is a test message")) Then
    MsgBox "The message was successfully delivered. "
End If