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中引用 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–方法 &

http://www.bkjia.com/phpjc/508359.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/508359.htmltecharticle前言: phpmailer是一个优秀的发件程序,但中文资料比较少,于是我手动翻译了phpmailer的elementindex.html,e文的:phpmailer.html”>http://www.bblog.com/…

Posted in 未分类

发表评论