http://www.bblog.com/"/> http://www.bblog.com/">
搜索
首页后端开发php教程phpmailer所有对象和属性 中文_PHP教程

phpmailer所有对象和属性 中文_PHP教程

Jul 13, 2016 pm 05:35 PM
phpmailer中文优秀前言对象属性程序资料

前言:
  phpmailer是一个优秀的发件程序,但中文资料比较少,于是我手动翻译了phpmailer的elementindex.html,E文的:PHPMailer.html">http://www.bblog.com/apidoc/elementindex_PHPMailer.html,因为水平有限,翻译的地方可能不是很准,希望大家多多指教。因为东西较多,所以分三个帖子


A-C

From:
http://www.xiaoxiaoyu.cn/AMP/215.html

A开头:
      $AltBody--属性
        出自:PHPMailer::$AltBody ,文件:class.phpmailer.php
        说明:该属性的设置是在邮件正文不支持HTML的备用显示
      AddAddress--方法
        出自:PHPMailer::AddAddress(),文件:class.phpmailer.php
        说明:增加收件人。参数1为收件人邮箱,参数2为收件人称呼。例AddAddress("xiaoxiaoxiaoyu@xiaoxiaoyu.cn","xiaoxiaoyu"),但参数2可选,AddAddress(xiaoxiaoxiaoyu@xiaoxiaoyu.cn)也是可以的。函数原型:
        public function AddAddress($address, $name = ) {}
        AddAttachment--方法
        出自:PHPMailer::AddAttachment(),文件:class.phpmailer.php
        说明:增加附件。参数:路径,名称,编码,类型。其中,路径为必选,其他为可选
        函数原型:
        AddAttachment($path, $name = , $encoding = base64, $type = application/octet-stream){}
      AddBCC--方法
         出自:PHPMailer::AddBCC(),文件:class.phpmailer.php
        说明:增加一个密送。抄送和密送的区别请看[SMTP发件中的密送和抄送的区别] 。参数1为地址,参数2为名称。注意此方法只支持在win32下使用SMTP,不支持mail函数
        函数原型:
         public function AddBCC($address, $name = ){}
        AddCC --方法
        出自:PHPMailer::AddCC(),文件:class.phpmailer.php
        说明:增加一个抄送。抄送和密送的区别请看[SMTP发件中的密送和抄送的区别] 。参数1为地址,参数2为名称注意此方法只支持在win32下使用SMTP,不支持mail函数        函数原型:
        public function AddCC($address, $name = ) {}
      AddCustomHeader  --方法
         出自:PHPMailer::AddCustomHeader(),文件:class.phpmailer.php
        说明:增加一个自定义的E-mail头部。参数为头部信息
        函数原型:
        public function AddCustomHeader($custom_header){}
      AddEmbeddedImage --方法
        出自:PHPMailer::AddEmbeddedImage(),文件:class.phpmailer.php
        说明:增加一个嵌入式图片。参数:路径,返回句柄[,名称,编码,类型]
        函数原型:
          public function AddEmbeddedImage($path, $cid, $name = , $encoding = base64, $type = application/octet-stream) {}
        提示: AddEmbeddedImage(PICTURE_PATH. "index_01.jpg ",   "img_01 ",   "index_01.jpg ");
        在html中引用phpmailer所有对象和属性 中文_PHP教程
        AddReplyTo--方法
        出自:PHPMailer:: AddReplyTo(),文件:class.phpmailer.php
        说明:增加回复标签,如"Reply-to"。参数1地址,参数2名称
        函数原型:
          public function AddReplyTo($address, $name = ) {}
      AddStringAttachment-方法
         出自:PHPMailer:: AddStringAttachment(),文件:class.phpmailer.php
        说明;增加一个字符串或二进制附件(Adds a string or binary attachment (non-filesystem) to the list.?)参数:字符串,文件名[,编码,类型]
        函数原型:
         public function AddStringAttachment($string, $filename, $encoding = base64, $type = application/octet-stream) {}
      Authenticate--方法
        出自:SMTP::Authenticate(),文件:class.smtp.php
        说明:开始SMTP认证,必须在Hello()之后调用,如果认证成功,返回true,参数1用户名,参数2密码
        函数原型:
        public function Authenticate($username, $password) {}
B开头
        $Body--属性
        出自:PHPMailer::$Body 文件: class.phpmailer.php
        说明:邮件内容,HTML或Text格式
C开头
        $CharSet--属性
        出自:PHPMailer::$CharSet 文件:class.phpmailer.php
        说明:邮件编码,默认为iso-8859-1
      $ConfirmReadingTo--属性
        出自:PHPMailer::$ConfirmReadingTo 文件class.phpmailer.php
        说明:回执?
        $ContentType--属性
        出自:PHPMailer::$ContentType 文件: class.phpmailer.php
        说明:文档的类型,默认为"text/plain"
        $CRLF--属性
        出自:PHPMailer::$ContentType 文件:class.phpmailer.php
        说明:SMTP回复结束的分隔符(SMTP reply line ending?)
      class.phpmailer.php--对象
        出自:class.phpmailer.php 文件: class.phpmailer.php
        说明:phpmailer对象
        class.smtp.php--对象
        出自:class.smtp.php 文件: class.smtp.php
        说明:SMTP功能的对象
        ClearAddresses--方法
        出自:PHPMailer::ClearAddresses() 文件: class.phpmailer.php
        说明:清除收件人,为下一次发件做准备。返回类型是void
      ClearAllRecipients--方法
        出自:PHPMailer::ClearAllRecipients() 文件: class.phpmailer.php
        说明:清除所有收件人,包括CC(抄送)和BCC(密送)
        ClearAttachments--方法
        出自:PHPMailer::ClearAttachments() 文件: class.phpmailer.php
        说明:清楚附件
        ClearBCCs--方法
    &

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508359.htmlTechArticle前言: phpmailer是一个优秀的发件程序,但中文资料比较少,于是我手动翻译了phpmailer的elementindex.html,E文的:PHPMailer.html">http://www.bblog.com/...

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
PHP电子邮件:分步发送指南PHP电子邮件:分步发送指南May 09, 2025 am 12:14 AM

phpisusedforsendendemailsduetoitsignegrationwithservermailservicesand andexternalsmtpproviders,自动化notifications andMarketingCampaigns.1)设置设置yourphpenvironcormentswironmentswithaweberswithawebserverserverserverandphp,确保themailfunctionisenabled.2)useabasicscruct

如何通过PHP发送电子邮件:示例和代码如何通过PHP发送电子邮件:示例和代码May 09, 2025 am 12:13 AM

发送电子邮件的最佳方法是使用PHPMailer库。1)使用mail()函数简单但不可靠,可能导致邮件进入垃圾邮件或无法送达。2)PHPMailer提供更好的控制和可靠性,支持HTML邮件、附件和SMTP认证。3)确保正确配置SMTP设置并使用加密(如STARTTLS或SSL/TLS)以增强安全性。4)对于大量邮件,考虑使用邮件队列系统来优化性能。

高级PHP电子邮件:自定义标题和功能高级PHP电子邮件:自定义标题和功能May 09, 2025 am 12:13 AM

CustomHeadersheadersandAdvancedFeaturesInphpeMailenHanceFunctionalityAndreliability.1)CustomHeadersheadersheadersaddmetadatatatatataatafortrackingandCategorization.2)htmlemailsallowformattingandttinganditive.3)attachmentscanmentscanmentscanbesmentscanbestmentscanbesentscanbesentingslibrarieslibrarieslibrariesliblarikelikephpmailer.4)smtppapapairatienticationaltication enterticationallimpr

使用PHP和SMTP发送电子邮件的指南使用PHP和SMTP发送电子邮件的指南May 09, 2025 am 12:06 AM

使用PHP和SMTP发送邮件可以通过PHPMailer库实现。1)安装并配置PHPMailer,2)设置SMTP服务器细节,3)定义邮件内容,4)发送邮件并处理错误。使用此方法可以确保邮件的可靠性和安全性。

使用PHP发送电子邮件的最佳方法是什么?使用PHP发送电子邮件的最佳方法是什么?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

PHP中依赖注入的最佳实践PHP中依赖注入的最佳实践May 08, 2025 am 12:21 AM

使用依赖注入(DI)的原因是它促进了代码的松耦合、可测试性和可维护性。1)使用构造函数注入依赖,2)避免使用服务定位器,3)利用依赖注入容器管理依赖,4)通过注入依赖提高测试性,5)避免过度注入依赖,6)考虑DI对性能的影响。

PHP性能调整技巧和技巧PHP性能调整技巧和技巧May 08, 2025 am 12:20 AM

phperformancetuningiscialbecapeitenhancesspeedandeffice,whatevitalforwebapplications.1)cachingwithapcureduccureducesdatabaseloadprovesrovesponsemetimes.2)优化

PHP电子邮件安全性:发送电子邮件的最佳实践PHP电子邮件安全性:发送电子邮件的最佳实践May 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

安全考试浏览器

安全考试浏览器

Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

SublimeText3 英文版

SublimeText3 英文版

推荐:为Win版本,支持代码提示!

Dreamweaver Mac版

Dreamweaver Mac版

视觉化网页开发工具