1 | <?php |
||
8 | class EmailAddress |
||
9 | { |
||
10 | private $mailbox; |
||
11 | private $hostname; |
||
12 | private $name; |
||
13 | private $address; |
||
14 | |||
15 | public function __construct($mailbox, $hostname = null, $name = null) |
||
25 | |||
26 | public function getAddress() |
||
30 | |||
31 | /** |
||
32 | * Returns address with person name |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getFullAddress() |
||
46 | |||
47 | public function getMailbox() |
||
51 | |||
52 | public function getHostname() |
||
56 | |||
57 | public function getName() |
||
61 | |||
62 | public function __toString() |
||
66 | } |
||
67 |