Internet Direct (Indy) Version 9.0.1 Beta
TIdEMailAddressItem.Address
Represents the person's Email address.

property Address: string;
Description
Address is a String property that represents an Email address in RFC 822-compliant form. Updating the Name or Address portions of the email address causes the Text property to be updated to reflect the previous changes to the new email address. For example:


    AEmail.Text := '"John Doe" <jdoe@some.net>';
    // AEmail.Name contains '"John Doe"'
    // AEmail.Address contains 'jdoe@some.net'

    AEmail.Name := 'Jane Doe';
    AEmail.Address := 'janed@another.net';
    // AEmail.Text contains 'Jane Doe <janed@another.net>'