IMP_Prefs_Identity::getAllIdentityAddresses PHP Method

getAllIdentityAddresses() public method

Returns a list of all e-mail addresses from all identities, including both from addresses and tie addreses.
public getAllIdentityAddresses ( ) : Horde_Mail_Rfc822_List
return Horde_Mail_Rfc822_List A list of e-mail addresses.
    public function getAllIdentityAddresses()
    {
        $list = $this->getAllFromAddresses();
        $list->add($this->getAllTieAddresses());
        return $list;
    }