* @package mail * @version $Id$ * @link http://www.zentao.net */ ?> app->loadClass('phpmailer', $static = true); $this->setMTA(); } /** * Set MTA. * * @access public * @return void */ public function setMTA() { if(self::$instance == null) self::$instance = new phpmailer(true); $this->mta = self::$instance; $this->mta->CharSet = $this->config->encoding; $funcName = "set{$this->config->mail->mta}"; if(!method_exists($this, $funcName)) echo $this->app->error("The MTA {$this->config->mail->mta} not supported now.", __FILE__, __LINE__, $exit = false); $this->$funcName(); } /** * Set smtp. * * @access private * @return void */ private function setSMTP() { $this->mta->isSMTP(); $this->mta->SMTPDebug = $this->config->mail->smtp->debug; $this->mta->Host = $this->config->mail->smtp->host; $this->mta->SMTPAuth = $this->config->mail->smtp->auth; $this->mta->Username = $this->config->mail->smtp->username; $this->mta->Password = $this->config->mail->smtp->password; if(isset($this->config->mail->smtp->port)) $this->mta->Port = $this->config->mail->smtp->port; } /** * PHPmail. * * @access private * @return void */ private function setPhpMail() { $this->mta->isMail(); } /** * Sendmail. * * @access private * @return void */ private function setSendMail() { $this->mta->isSendmail(); } /** * Gmail. * * @access private * @return void */ private function setGMail() { $this->mta->isSMTP(); $this->mta->SMTPDebug = $this->config->mail->gmail->debug; $this->mta->Host = 'smtp.gmail.com'; $this->mta->Port = 465; $this->mta->SMTPSecure = "ssl"; $this->mta->SMTPAuth = true; $this->mta->Username = $this->config->mail->gmail->username; $this->mta->Password = $this->config->mail->gmail->password; } /** * Send email * * @param array $toList * @param string $subject * @param string $body * @param array $ccList * @access public * @return void */ public function send($toList, $subject, $body = '', $ccList = '') { if(!$this->config->mail->turnon) return; /* Get realname and email of users. */ $this->loadModel('user'); $emails = $this->user->getRealNameAndEmails(str_replace(' ', '', $toList . ',' . $ccList)); $this->clear(); try { $this->mta->setFrom($this->config->mail->fromAddress, $this->config->mail->fromName); $this->setSubject($subject); $this->setTO($toList, $emails); $this->setCC($ccList, $emails); $this->setBody($body); $this->setErrorLang(); $this->mta->send(); } catch (phpmailerException $e) { $this->errors[] = trim(strip_tags($e->errorMessage())); } catch (Exception $e) { $this->errors[] = trim(strip_tags($e->getMessage())); } } /** * Set to address * * @param array $toList * @param array $emails * @access private * @return void */ private function setTO($toList, $emails) { $toList = explode(',', str_replace(' ', '', $toList)); foreach($toList as $account) { if(!isset($emails[$account]) or isset($emails[$account]->sended) or strpos($emails[$account]->email, '@') == false) continue; $this->mta->addAddress($emails[$account]->email, $emails[$account]->realname); $emails[$account]->sended = true; } } /** * Set cc. * * @param array $ccList * @param array $emails * @access private * @return void */ private function setCC($ccList, $emails) { $ccList = explode(',', str_replace(' ', '', $ccList)); if(!is_array($ccList)) return; foreach($ccList as $account) { if(!isset($emails[$account]) or isset($emails[$account]->sended) or strpos($emails[$account]->email, '@') == false) continue; $this->mta->addCC($emails[$account]->email, $emails[$account]->realname); $emails[$account]->sended = true; } } /** * Set subject * * @param string $subject * @access private * @return void */ private function setSubject($subject) { $this->mta->Subject = stripslashes($subject); } /** * Set body. * * @param string $body * @access private * @return void */ private function setBody($body) { $this->mta->msgHtml("$body"); } /** * Set error lang. * * @access private * @return void */ private function setErrorLang() { $this->mta->SetLanguage($this->app->getClientLang()); } /** * Clear. * * @access private * @return void */ private function clear() { $this->mta->clearAddresses(); $this->mta->clearAttachments(); } /** * Is error? * * @access public * @return bool */ public function isError() { return !empty($this->errors); } /** * Get errors. * * @access public * @return void */ public function getError() { $errors = $this->errors; $this->errors = array(); return $errors; } }