X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Femail.php-class;h=ff03a17363534d9083423d5e7538b9e0427f412e;hp=bf7273c4d44e57b36aa0acac4870b381a7afab2d;hb=fa6eb05380b3b49b1aae02d2e2168406703eaca6;hpb=025016ca6af3725769ac5a68ac4fd6a9b184e095 diff --git a/include/classes/email.php-class b/include/classes/email.php-class old mode 100755 new mode 100644 index bf7273c..ff03a17 --- a/include/classes/email.php-class +++ b/include/classes/email.php-class @@ -96,12 +96,21 @@ class email { // public function addHeaderAddress($hname, $email, [$name]) // add an address header to the mail, possibly with both name and mail parts // + // public function setCharset($newcharset) + // set charset for this mail + // // public function addMailText($textpart) // add some text to the mail // // 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 // @@ -158,12 +167,53 @@ class email { $this->headers[] = array('name' => $hname, 'content' => $hcontent); } + public function setCharset($newcharset) { $this->charset = $newcharset; } + public function addMailText($textpart) { $this->mailtext .= $textpart; } public function addAttachment($aname, $acontent, $atype = 'application/octet-stream') { $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 = ''; @@ -182,11 +232,16 @@ class email { if (count($this->recipients)) { $recpt = ''; foreach ($this->recipients as $address) { - if (strlen($address['name'])) { $recpt .= $this->mimeencode($address['name'], true).' <'.$address['mail'].'>,'; } - else { $recpt .= $address['mail'].','; } + if (strlen(@$address['mail'])) { + if (strlen($address['name'])) { $recpt .= $this->mimeencode($address['name'], true).' <'.$address['mail'].'>,'; } + else { $recpt .= $address['mail'].','; } + } } $recpt = preg_replace('/,$/', '', $recpt); } + if (!strlen($recpt)) { + return null; + } if (count($this->cc)) { $adrs = ''; foreach ($this->cc as $address) { @@ -247,12 +302,20 @@ class email { foreach ($this->attachments as $attach) { $mtxt .= "\n".'--'.$boundary."\n"; $mtxt .= 'Content-Type: '.$attach['type'].'; name="'.$attach['name'].'";'."\n"; - $mtxt .= 'Content-Transfer-Encoding: base64'."\n"; - $mtxt .= 'Content-Disposition: attachment'."\n\n"; - $mtxt .= rtrim(chunk_split(base64_encode($attach['content']), 76)); ; - $mtxt .= "\n"; + if (preg_match('/^(text|message)\//', $attach['type'])) { + $mtxt .= 'Content-Transfer-Encoding: 8bit'."\n"; + $mtxt .= 'Content-Disposition: attachment'."\n\n"; + $mtxt .= $attach['content']; + $mtxt .= "\n"; + } + else { + $mtxt .= 'Content-Transfer-Encoding: base64'."\n"; + $mtxt .= 'Content-Disposition: attachment'."\n\n"; + $mtxt .= rtrim(chunk_split(base64_encode($attach['content']), 76)); ; + $mtxt .= "\n"; + } } - $mtext .= '--'.$boundary.'--'."\n"; + $mtxt .= '--'.$boundary.'--'."\n"; } if (strlen($this->debug_toSingleAddress)) { @@ -280,7 +343,5 @@ class email { } return $mText; } - - } ?>