|
Summary
Blind carbon copy. The property has been deprecated and should no longer be used. The
OnSetAddrField event should be used to set the message's "Bcc" address field.
Description
The Bcc property is used to identify additional recipients of the mail message. The
contents of this property is used to build the "Bcc" field of the mail header.
This is an optional property. The Bcc property, if used, must be set before setting the
Action property to ACTION_CREATE. This property is ignored if the message is a news
article.
The contents of the "Bcc" field are not included in the copies of the mail
message sent to the primary (specified in the To property) and the secondary (specified by
the Cc property) recipients. Some mail servers may include the text of this field only in
the sender's copy (specified by the From property), while others may include it in the
text sent to all recipients indicated in the "Bcc" field.
This property can be changed at design time and at run time (before creating a
message). There is no default value for this property.
Example
Mime.To = "santa"
Mime.Cc = "elves"
Mime.Bcc = "children"
......
Mime.Action = ACTION_CREATE
|