用phpmailer类发送邮件的相关有关问题

php中文网
发布: 2016-06-13 13:44:22
原创
1089人浏览过

用phpmailer类发送邮件的相关问题。
[size=12px]在phpmailer类中有一个CreateBody()方法,[/size]
代码如下:
 /**
  * Assembles the message body. Returns an empty string on failure.
  * @access public
  * @return string The assembled message body
  */
  public function CreateBody() {
  $body = '';

  if ($this->sign_key_file) {
  $body .= $this->GetMailMIME();
  }

  $this->SetWordWrap();

  switch($this->message_type) {
  case 'alt':
  $body .= $this->GetBoundary($this->boundary[1], '', 'text/plain', '');
  $body .= $this->EncodeString($this->AltBody, $this->Encoding);
  $body .= $this->LE.$this->LE;
  $body .= $this->GetBoundary($this->boundary[1], '', 'text/html', '');
  $body .= $this->EncodeString($this->Body, $this->Encoding);
  $body .= $this->LE.$this->LE;
  $body .= $this->EndBoundary($this->boundary[1]);
  break;
  case 'plain':
  $body .= $this->EncodeString($this->Body, $this->Encoding);
  break;
  case 'attachments':
  $body .= $this->GetBoundary($this->boundary[1], '', '', '');
  $body .= $this->EncodeString($this->Body, $this->Encoding);
  $body .= $this->LE;
  $body .= $this->AttachAll();
  break;
  case 'alt_attachments':
  $body .= sprintf("--%s%s", $this->boundary[1], $this->LE);
  $body .= sprintf("Content-Type: %s;%s" . "\tboundary=\"%s\"%s", 'multipart/alternative', $this->LE, $this->boundary[2], $this->LE.$this->LE);
  $body .= $this->GetBoundary($this->boundary[2], '', 'text/plain', '') . $this->LE; // Create text body
  $body .= $this->EncodeString($this->AltBody, $this->Encoding);
  $body .= $this->LE.$this->LE;
  $body .= $this->GetBoundary($this->boundary[2], '', 'text/html', '') . $this->LE; // Create the HTML body
  $body .= $this->EncodeString($this->Body, $this->Encoding);
  $body .= $this->LE.$this->LE;
  $body .= $this->EndBoundary($this->boundary[2]);
  $body .= $this->AttachAll();
  break;
  }

  if ($this->IsError()) {
  $body = '';
  } elseif ($this->sign_key_file) {
  try {
  $file = tempnam('', 'mail');
  file_put_contents($file, $body); //TODO check this worked
  $signed = tempnam("", "signed");
  if (@openssl_pkcs7_sign($file, $signed, "file://".$this->sign_cert_file, array("file://".$this->sign_key_file, $this->sign_key_pass), NULL)) {
  @unlink($file);
  @unlink($signed);
  $body = file_get_contents($signed);
  } else {
  @unlink($file);
  @unlink($signed);
  throw new phpmailerException($this->Lang("signing").openssl_error_string());
  }
  } catch (phpmailerException $e) {
  $body = '';
  if ($this->exceptions) {
  throw $e;
  }
  }
  }

  return $body;
  }


问题:
已经从后台传参过来option数组对象,需要在发送文件的body中设置以一定的格式显示option数组对象的内容,请问如何设置????

------解决方案--------------------

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号