ToAddr property
|
SendMail component.
|
property ToAddr: String;
|
The ToAddr property specifies the recipients of the message. You can specify any number of e-mail addresses and recipient names.
|
|
The value of ToAddr 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>
|
|
Alternatively, if you wish to specify multiple recipients, you can use ToCC property (carbon-copy). If you wish to hide some email addresses from message header use ToBCC property (blind carbon-copy).
|
Please don't use brackets (< and >) in the "Name" fields (between quotes). Otherwise the address will be parsed incorrectly. For example, following address will be parsed incorrectly!!:
|
"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>
|
ToCC and ToBCC properties.
|