Home >Backend Development >PHP Tutorial > 【分享:PHP发送邮件SMTP类】解决方法

【分享:PHP发送邮件SMTP类】解决方法

WBOY
WBOYOriginal
2016-06-13 13:31:13928browse

【分享:PHP发送邮件SMTP类】
免费分享地址:http://download.csdn.net/source/2507571

这是从PHP168系统中分离出来的SMTP发送邮件类,很好用的。配置好邮件服务器的相关信息,即可成功发送邮件。
部分代码:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
require_once("class.mail.php");
/**
*服务器信息
*/
$MailServer = 'mail.tulou.com';  //SMTP 服务器
$MailPort = '25';                //SMTP服务器端口号 默认25
$MailId = 'changwei@tulou.com';  //服务器帐号
$MailPw = '123456';              //服务器账号密码

/**
*客户端信息
*/
$Title = '测试邮件标题'; //邮件标题
$Content = '测试邮件内容'; //邮件内容
$email = 'changwei0112@163.com';//接收者邮箱
$smtp = new smtp($MailServer,$MailPort,true,$MailId,$MailPw);
$smtp->debug = false; //实例化类

$smtp->sendmail($email,$MailId, $Title, $Content, "HTML") //发送邮件



------解决方案--------------------
不错,收藏了!~
------解决方案--------------------
呵呵!
------解决方案--------------------
很好....
------解决方案--------------------
呵~ ,本地测试的时候能用么?
------解决方案--------------------

用着呢 帮忙顶一下,,,
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn