X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Femail.php-class;h=2de9ca4e67015145c556ca14cf81ca081fa38bf3;hp=c7e1ee4f657e3d95fef5d852bde131b84267f09f;hb=43bc07b3ee51f7d3f5ecd783b8195da26cc43f03;hpb=ba79b48c782b861d2086d19ac496a9fecb09e403 diff --git a/include/classes/email.php-class b/include/classes/email.php-class old mode 100755 new mode 100644 index c7e1ee4..2de9ca4 --- a/include/classes/email.php-class +++ b/include/classes/email.php-class @@ -102,6 +102,12 @@ class email { // public function addAttachment($aname, $acontent, [$atype]) // add an attachment to the mail, use given file name, content and MIME type (defaults to application/octet-stream) // + // public function getAddresses([$addrtype]) + // returns an array of all addresses this mail gets sent to + // fields: email, name, addrtype + // addrtype is one of to/cc/bcc + // the $addrtype parameter is a comma-separated list of such types, default: all of them + // // public function send() // really send the mail // @@ -164,6 +170,45 @@ class email { $this->attachments[] = array('name' => $aname, 'content' => $acontent, 'type' => $atype); } + public function getAddresses($addrtype = null) { + // returns all addresses this mail gets sent to + if (!is_array($addrtype)) { + if (strlen($addrtype)) { $addrtype = explode(',', strtolower($addrtype)); } + else { $addrtype = array('to','cc','bcc'); } + } + $mailaddresses = array(); + + if (in_array('to', $addrtype)) { + foreach ($this->recipients as $address) { + if (strlen(@$address['mail'])) { + $mailaddresses[] = array('mail'=>$address['mail'], + 'name'=>strlen($address['name'])?$address['name']:'', + 'addrtype'=>'to'); + } + } + } + if (in_array('cc', $addrtype)) { + foreach ($this->cc as $address) { + if (strlen(@$address['mail'])) { + $mailaddresses[] = array('mail'=>$address['mail'], + 'name'=>strlen($address['name'])?$address['name']:'', + 'addrtype'=>'cc'); + } + } + } + if (in_array('bcc', $addrtype)) { + foreach ($this->bcc as $address) { + if (strlen(@$address['mail'])) { + $mailaddresses[] = array('mail'=>$address['mail'], + 'name'=>strlen($address['name'])?$address['name']:'', + 'addrtype'=>'bcc'); + } + } + } + + return $mailaddresses; + } + public function send() { global $util; $mtxt = ''; @@ -293,7 +338,5 @@ class email { } return $mText; } - - } ?>