Indy 9
|
TIdEMailAddressList = class(TOwnedCollection)
TIdEMailAddressList is the type used to represent TIdMessage properties that can accept one or more EMail addresses, like Receipients, CCList, and BCCList.
property EMailAddresses: String;
Reading EMailAddresses results in a string that contains a comma-delimited list of values for each TIdEmailAddressItem in collection.
Writing to EMailAddresses will Clear the collection, and add each parsed EMail address to the collection. Note: Group EMail addresses, delimited with the ":" (colon) and ";" (semi-colon) characters, are ignored when email addresses are added to the collection.
property Items [ Index: Integer ]: TIdEMailAddressItem;
function Add: TIdEMailAddressItem;
constructor Create(AOwner: TPersistent); reintroduce;
procedure FillTStrings(AStrings: TStrings);