IMP_Prefs_Identity::getAllIdentityAddresses PHP 메소드

getAllIdentityAddresses() 공개 메소드

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