|
|
|
| SendMail component.
|
| property ToBCC: String;
|
| The ToBCC property used to specify recipients of the message which addresses should NOT be visible in the message header. This is field known as blind carbon-copy and only the message sender knows to whom the message was sent. All e-mails used in ToBCC will be hidden and recipients will NOT see these e-mail addresses.
|
|
|
| The value of ToBCC property must have following format:
|
| "Name1" <address1>; "Name2" <address2> , "NameN" <addressN>
|
|
|
| The name of the recipient marked blue (must be between quotes ("), i.e: "John Smith"). You can leave the name blank and use just email address;
|
| E-mail address of recipient marked green (must be between brackets "<>", i.e: <john@smith.com>).
|
| Multiple recipients should be separated by semicolon (;) or comma (,).
|
|
|
| Examples
|
| <john@smith.com>
|
| "John Smith" <john@smith.com>, <info@appcontrols.com>, <webmaster@utilmind.com>
|
| "Aleksey Kuznetsov" <aleksey@utilmind.com>; "Webmaster" <webmaster@utilmind.com>
|
|
|
| "John<g> Smith" <john@smith.com>
|
|
|
| However, the parser is smart enough to parse definitions like these:
|
| "John Smith, Inc;" <john@smith.com>
|
| "Smith, "A" John" <john@smith.com>
|
| ToAddr and ToCC properties.
|