当前位置: 首页>>代码示例>>PHP>>正文


PHP Mail::prepareHeaders方法代码示例

本文整理汇总了PHP中Mail::prepareHeaders方法的典型用法代码示例。如果您正苦于以下问题:PHP Mail::prepareHeaders方法的具体用法?PHP Mail::prepareHeaders怎么用?PHP Mail::prepareHeaders使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mail的用法示例。


在下文中一共展示了Mail::prepareHeaders方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: send

 function send($recipients, $headers, $body)
 {
     // This code copied from the Mail.php pear class -- shame they didn't template it...
     $this->_sanitizeHeaders($headers);
     if (is_array($recipients)) {
         $recipients = join(', ', $recipients);
     }
     list($from, $text_headers) = Mail::prepareHeaders($headers);
     $filename = $this->path . $recipients;
     file_put_contents($filename, "{$text_headers}\r\n\r\n{$body}\r\n");
 }
开发者ID:bufvc,项目名称:bufvc-potnia-framework,代码行数:11,代码来源:DummyMail.class.php

示例2: send

 /**
  * Implements Mail::send() function using php's built-in mail()
  * command.
  *
  * @param mixed $recipients Either a comma-seperated list of recipients
  *              (RFC822 compliant), or an array of recipients,
  *              each RFC822 valid. This may contain recipients not
  *              specified in the headers, for Bcc:, resending
  *              messages, etc.
  *
  * @param array $headers The array of headers to send with the mail, in an
  *              associative array, where the array key is the
  *              header name (ie, 'Subject'), and the array value
  *              is the header value (ie, 'test'). The header
  *              produced from those values would be 'Subject:
  *              test'.
  *
  * @param string $body The full text of the message body, including any
  *               Mime parts, etc.
  *
  * @return mixed Returns true on success, or a PEAR_Error
  *               containing a descriptive error message on
  *               failure.
  * @access public
  * @deprecated use Mail_mail::send instead
  */
 function send($recipients, $headers, $body)
 {
     // if we're passed an array of recipients, implode it.
     if (is_array($recipients)) {
         $recipients = implode(', ', $recipients);
     }
     // get the Subject out of the headers array so that we can
     // pass it as a seperate argument to mail().
     $subject = '';
     if (isset($headers['Subject'])) {
         $subject = $headers['Subject'];
         unset($headers['Subject']);
     }
     // flatten the headers out.
     list(, $text_headers) = Mail::prepareHeaders($headers);
     return mail($recipients, $subject, $body, $text_headers);
 }
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:43,代码来源:Mail.php

示例3: send

 /**
  * Implements Mail::send() function using php's built-in mail()
  * command.
  *
  * @param mixed $recipients Either a comma-seperated list of recipients
  *              (RFC822 compliant), or an array of recipients,
  *              each RFC822 valid. This may contain recipients not
  *              specified in the headers, for Bcc:, resending
  *              messages, etc.
  *
  * @param array $headers The array of headers to send with the mail, in an
  *              associative array, where the array key is the
  *              header name (ie, 'Subject'), and the array value
  *              is the header value (ie, 'test'). The header
  *              produced from those values would be 'Subject:
  *              test'.
  *
  * @param string $body The full text of the message body, including any
  *               Mime parts, etc.
  *
  * @return mixed Returns true on success, or a PEAR_Error
  *               containing a descriptive error message on
  *               failure.
  *
  * @access public
  * @deprecated use Mail_mail::send instead
  */
 function send($recipients, $headers, $body)
 {
     if (!is_array($headers)) {
         return PEAR::raiseError('$headers must be an array');
     }
     $result = $this->_sanitizeHeaders($headers);
     if (is_a($result, 'PEAR_Error')) {
         return $result;
     }
     // if we're passed an array of recipients, implode it.
     if (is_array($recipients)) {
         $recipients = implode(', ', $recipients);
     }
     // get the Subject out of the headers array so that we can
     // pass it as a seperate argument to mail().
     $subject = '';
     if (isset($headers['Subject'])) {
         $subject = $headers['Subject'];
         unset($headers['Subject']);
     }
     // flatten the headers out.
     list(, $text_headers) = Mail::prepareHeaders($headers);
     return mail($recipients, $subject, $body, $text_headers);
 }
开发者ID:shoaibali,项目名称:simplesamlphp-module-auth2factor,代码行数:51,代码来源:Mail.php

示例4: send

 /**
  * Implements Mail_mail::send() function using php's built-in mail()
  * command.
  * 
  * @param mixed $recipients Either a comma-seperated list of recipients
  *              (RFC822 compliant), or an array of recipients,
  *              each RFC822 valid. This may contain recipients not
  *              specified in the headers, for Bcc:, resending
  *              messages, etc.
  *
  * @param array $headers The array of headers to send with the mail, in an
  *              associative array, where the array key is the
  *              header name (ie, 'Subject'), and the array value
  *              is the header value (ie, 'test'). The header
  *              produced from those values would be 'Subject:
  *              test'.
  *
  * @param string $body The full text of the message body, including any
  *               Mime parts, etc.
  *
  * @return mixed Returns true on success, or a PEAR_Error
  *               containing a descriptive error message on
  *               failure.
  * @access public
  */
 function send($recipients, $headers, $body)
 {
     // if we're passed an array of recipients, implode it.
     if (is_array($recipients)) {
         $recipients = implode(', ', $recipients);
     }
     // get the Subject out of the headers array so that we can
     // pass it as a seperate argument to mail().
     $subject = '';
     if (isset($headers['Subject'])) {
         $subject = $headers['Subject'];
         unset($headers['Subject']);
     }
     // flatten the headers out.
     list(, $text_headers) = Mail::prepareHeaders($headers);
     include_once 'Mail/RFC822.php';
     $addresses = Mail_RFC822::parseAddressList($headers['From'], 'localhost', false);
     $from = $addresses[0]->mailbox . '@' . $addresses[0]->host;
     return mail($recipients, $subject, $body, $text_headers, "-f" . $from . " " . $this->_params);
 }
开发者ID:amjadtbssm,项目名称:website,代码行数:45,代码来源:mail.php

示例5: send

 /**
  * Implements Mail::send() function using php's built-in mail()
  * command.
  *
  * @param mixed $recipients Either a comma-seperated list of recipients
  *              (RFC822 compliant), or an array of recipients,
  *              each RFC822 valid. This may contain recipients not
  *              specified in the headers, for Bcc:, resending
  *              messages, etc.
  *
  * @param array $headers The array of headers to send with the mail, in an
  *              associative array, where the array key is the
  *              header name (ie, 'Subject'), and the array value
  *              is the header value (ie, 'test'). The header
  *              produced from those values would be 'Subject:
  *              test'.
  *
  * @param string $body The full text of the message body, including any
  *               Mime parts, etc.
  *
  * @return mixed Returns true on success, or a PEAR_Error
  *               containing a descriptive error message on
  *               failure.
  * @access public
  * @deprecated use Mail_mail::send instead
  */
 function send($recipients, $headers, $body, $return = '')
 {
     // if we're passed an array of recipients, implode it.
     if (is_array($recipients)) {
         $recipients = implode(', ', $recipients);
     }
     // get the Subject out of the headers array so that we can
     // pass it as a seperate argument to mail().
     $subject = '';
     if (isset($headers['Subject'])) {
         mb_language('uni');
         mb_internal_encoding("UTF-8");
         $subject = mb_encode_mimeheader($headers['Subject'], "UTF-8", "B", "\n");
         unset($headers['Subject']);
     }
     // flatten the headers out.
     list(, $text_headers) = Mail::prepareHeaders($headers);
     if (!empty($return)) {
         $return = '-f' . $return;
     }
     return mail($recipients, $subject, $body, $text_headers, $return);
 }
开发者ID:a2call,项目名称:commsy,代码行数:48,代码来源:mail.php

示例6: send

 /**
  * Implements Mail_mail::send() function using php's built-in mail()
  * command.
  * 
  * @param mixed $recipients Either a comma-seperated list of recipients
  *              (RFC822 compliant), or an array of recipients,
  *              each RFC822 valid. This may contain recipients not
  *              specified in the headers, for Bcc:, resending
  *              messages, etc.
  *
  * @param array $headers The array of headers to send with the mail, in an
  *              associative array, where the array key is the
  *              header name (ie, 'Subject'), and the array value
  *              is the header value (ie, 'test'). The header
  *              produced from those values would be 'Subject:
  *              test'.
  *
  * @param string $body The full text of the message body, including any
  *               Mime parts, etc.
  *
  * @return mixed Returns true on success, or a PEAR_Error
  *               containing a descriptive error message on
  *               failure.
  *
  * @access public
  */
 function send($recipients, $headers, $body)
 {
     // If we're passed an array of recipients, implode it.
     if (is_array($recipients)) {
         $recipients = implode(', ', $recipients);
     }
     // Get the Subject out of the headers array so that we can
     // pass it as a seperate argument to mail().
     $subject = '';
     if (isset($headers['Subject'])) {
         $subject = $headers['Subject'];
         unset($headers['Subject']);
     }
     // Flatten the headers out.
     list(, $text_headers) = Mail::prepareHeaders($headers);
     /*
      * We only use mail()'s optional fifth parameter if the additional
      * parameters have been provided and we're not running in safe mode.
      */
     if (empty($this->_params) || ini_get('safe_mode')) {
         $result = mail($recipients, $subject, $body, $text_headers);
     } else {
         $result = mail($recipients, $subject, $body, $text_headers, $this->_params);
     }
     /*
      * If the mail() function returned failure, we need to create a
      * PEAR_Error object and return it instead of the boolean result.
      */
     if ($result === false) {
         $result = PEAR::raiseError('mail() returned failure', PEAR_MAIL_FAILED);
     }
     return $result;
 }
开发者ID:valentijnvenus,项目名称:geocloud,代码行数:59,代码来源:mail.php


注:本文中的Mail::prepareHeaders方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。