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)

相关讨论

163邮箱未能收到,需要做什么配置吗

by Germin - PHP - 2013-02-21 11:38:27 阅读(1777) 回复(2)

Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /var/www/xiehui/admin/mail/class.smtp.php on line 89 我在 linunx 发邮件报上的错,服务器没有装 fsockopen,不知道用 sendmail 如何发?

by liuchanghu - PHP - 2008-03-30 15:08:33 阅读(2395) 回复(4)

版权声明:原创文章,转载请注明出处,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)