ChinaUnix.net
相关文章推荐:

phpmailer群发

?php /** * mailer * 用来发送email,what the client what is so complex! * * related table:lr_mailsubscriber */ class mailer extends Controller { function mailer(){ parent::Controller(); //$this->load->scaffolding("lr_users") ; } function index(){ //$this->load->view('welcome_message'); header("Location:/index.php"); } public f...

by yueming - php文档中心 - 2008-08-12 13:02:45 阅读(2778) 回复(0)

相关讨论

版权声明:原创文章,转载请注明出处,Crazy Loong(http://goto8848.net) 就如它的名字一样,phpmailer 是一个使用 PHP 编写的邮件发送类,同时,phpmailer 也是一个功能强大的类。 官方网站: http://phpmailer.codeworxtech.com/ phpmailer 的主要特点有: 1、在邮件中包含多个 TO、CC、BCC 和 REPLY-TO。 2、平台应用广泛,支持的 SMTP 服务器包括 Sendmail、qmail、Postfix、Gmail、Imail、Exchange 等等。 3、支持嵌入图像...

by windlike - php文档中心 - 2009-04-20 14:21:17 阅读(1108) 回复(0)

请问谁用过phpmailer类吗?为啥我用它的的例子,页面没有任何反应呢?

by zhao3stones - PHP - 2008-10-17 07:33:50 阅读(1762) 回复(1)

require("class.phpmailer.php"); $mail = new phpmailer(); $mail->IsSMTP(); // send via SMTP $mail->Host = "smtp1.site.com;smtp2.site.com"; // SMTP servers $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "jswan"; // SMTP username $mail->Password = "secret"; // SMTP password $mail->From = "from@email.com"; $mail->FromName = "Mail...

by xh_terry - php文档中心 - 2008-05-07 11:40:15 阅读(859) 回复(0)

require("class.phpmailer.php"); $mail = new phpmailer(); $mail->IsSMTP(); // send via SMTP $mail->Host = "smtp1.site.com;smtp2.site.com"; // SMTP servers $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "jswan"; // SMTP username $mail->Password = "secret"; // SMTP password $mail->From = "from@email.com"; $mail->FromName = "Mail...

by yanjing5462 - Linux文档专区 - 2006-10-24 14:22:13 阅读(556) 回复(0)

phpmailer 发送邮件 php有多种类是用来发送邮箱的,我们选取其中的phpmailer,从网上下载phpmailer文件,我们只要其中的类文件,包括phpmailer、smtp、po3三个类文件即可。接下来我们可以在php文件里直接调用类文件用来发送邮箱: Php代码[code]1./** 2. * 2011-10-25 3. * 描述:PHP邮件发送 4. * 使用phpmailer类 5. * 发送附件,多人发送 6. * 发送附件 7. * 发送附件的时候,鉴于本地网络和服务器的速度...

php

by 中关村村草 - php文档中心 - 2011-11-02 23:06:01 阅读(2020) 回复(1)

使用phpmailer发送邮件,在本地测试正常,上传到服务器上时报如下错误: Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: node name or service name not known in /export/home/wwwroot/Mailer/class.smtp.php on line 122 是不是服务器哪里配置有问题呢?还是程序问题呢?

by pets511 - PHP - 2008-12-04 10:51:03 阅读(2526) 回复(4)

   不知道哪位用过phpmailer,一个php邮件发送类,支持smtp,mail,sendmail,qmail,我用的是smtp方式,用@vip.163.com做为发信邮箱,但碰到了许多系统退信,一些是因为“对方不存在该用户”,可以不管,奇怪的是,对于@hotmail.com,使用vip.163.com提供的web方式发送邮件给@hotmail.com,对方可以收到,但使用phpmailer却不行,系统退信返回:SMTP error, RCPT TO: 550 Requested action not taken: mailbox unavailable,请教各...

by oklqh - PHP - 2004-10-19 20:19:37 阅读(1960) 回复(5)

我有一个邮件服务器 ,例如: mail.abc.com ,IP 1.1.1.1 我使用了两种方式发送邮件: 1.我使用Thunderbird 通过SMTP连接到这个邮件服务器,发送邮件到别的地址: [email]ccc@qq.com[/email] 2.在另一台计算机上(非mail.abc.com 服务器) 上使用phpmailer 5.1 通过SMTP连接到邮件服务器发送。 最终我发现收到的邮件头有两点区别: 第一种 最后一个Received: from abc.com ([123.116.50.130]) IP是运行Thunderbird的计算机,...

by snwxf - PHP - 2011-08-12 10:22:39 阅读(2233) 回复(4)

作者:李英江 日期: 2006-12-07 17:30:39 转载请保留作者内容: http://www.cgsir.com 第一步:需要下载phpmailer文件包phpmailer-1.73.tar.gz 来自开源社区: http://phpmailer.sourceforge.net/ 第二步:确认你的服务器系统已经支持socket 如下图,通过phpinfo();查看是否支持sockets   如果没有这一项就请注意: socket 是属于PHP扩展部分,编译时必须给定一个用于./configure --enable-sockets 的配置选项。 第三步:把...

by qiqiy - php文档中心 - 2008-12-07 21:46:51 阅读(1265) 回复(0)

.Scb429 { display:none; } phpmailer 是一个用PHP写的用于邮件发送的类,有点像Jmail,相信很多新手和我一样,开始很茫然,不知道怎么安装,查找了一下,发现这方面的资料真的少之又少,一个文章被转载千百次,一搜索全是同一个内容,真不知道说什么好,其实打开安装里的readme就一目了然了,闲话少说,安装其实很简单。 打开你电脑里的PHP.INI文件,找到如下位置,添加红线部分的内容,路径就是你phpmailer存放的位置: 保存...

by 剑心通明 - php文档中心 - 2008-05-29 09:49:27 阅读(1085) 回复(0)