當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CakeEmail::messageID方法代碼示例

本文整理匯總了PHP中CakeEmail::messageID方法的典型用法代碼示例。如果您正苦於以下問題:PHP CakeEmail::messageID方法的具體用法?PHP CakeEmail::messageID怎麽用?PHP CakeEmail::messageID使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CakeEmail的用法示例。


在下文中一共展示了CakeEmail::messageID方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: send

 /**
  * Send an email using the specified content, template and layout
  *
  * @param string|array $content Either an array of text lines, or a string with contents
  *  If you are rendering a template this variable will be sent to the templates as `$content`
  * @param string $template Template to use when sending email
  * @param string $layout Layout to use to enclose email body
  * @return bool Success
  */
 public function send($content = null, $template = null, $layout = null)
 {
     $lib = new CakeEmail();
     $lib->charset = $this->charset;
     $lib->headerCharset = $this->charset;
     $lib->from($this->_formatAddresses((array) $this->from));
     if (!empty($this->to)) {
         $lib->to($this->_formatAddresses((array) $this->to));
     }
     if (!empty($this->cc)) {
         $lib->cc($this->_formatAddresses((array) $this->cc));
     }
     if (!empty($this->bcc)) {
         $lib->bcc($this->_formatAddresses((array) $this->bcc));
     }
     if (!empty($this->replyTo)) {
         $lib->replyTo($this->_formatAddresses((array) $this->replyTo));
     }
     if (!empty($this->return)) {
         $lib->returnPath($this->_formatAddresses((array) $this->return));
     }
     if (!empty($this->readReceipt)) {
         $lib->readReceipt($this->_formatAddresses((array) $this->readReceipt));
     }
     $lib->subject($this->subject);
     $lib->messageID($this->messageId);
     $lib->helpers($this->_controller->helpers);
     $headers = array('X-Mailer' => $this->xMailer);
     foreach ($this->headers as $key => $value) {
         $headers['X-' . $key] = $value;
     }
     if ($this->date) {
         $headers['Date'] = $this->date;
     }
     $lib->setHeaders($headers);
     if ($template) {
         $this->template = $template;
     }
     if ($layout) {
         $this->layout = $layout;
     }
     $lib->template($this->template, $this->layout)->viewVars($this->_controller->viewVars)->emailFormat($this->sendAs);
     if (!empty($this->attachments)) {
         $lib->attachments($this->_formatAttachFiles());
     }
     $lib->transport(ucfirst($this->delivery));
     if ($this->delivery === 'mail') {
         $lib->config(array('eol' => $this->lineFeed, 'additionalParameters' => $this->additionalParams));
     } elseif ($this->delivery === 'smtp') {
         $lib->config($this->smtpOptions);
     } else {
         $lib->config(array());
     }
     $sent = $lib->send($content);
     $this->htmlMessage = $lib->message(CakeEmail::MESSAGE_HTML);
     if (empty($this->htmlMessage)) {
         $this->htmlMessage = null;
     }
     $this->textMessage = $lib->message(CakeEmail::MESSAGE_TEXT);
     if (empty($this->textMessage)) {
         $this->textMessage = null;
     }
     $this->_header = array();
     $this->_message = array();
     return $sent;
 }
開發者ID:yuuicchan0912,項目名稱:sample2,代碼行數:75,代碼來源:EmailComponent.php


注:本文中的CakeEmail::messageID方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。