linux下如何发送mail,难道一定要开tp服务吗 (linux 外网发邮件)

是的

Linux下的TP服务的配置,比较复杂一些,且各发行版本有些差异,以下是一个示例,供参考(建议使用第三个方法)

linux下tp配置方法有几种,具体如下:

方法一,使用mail函数发送邮件;使用时时需要在本地系统上正确设置TP,否则将不能发送邮件。由于对系统的依赖性比较大,很多时候很不稳定,在一些提供虚拟主机服务的代理商中使用mail函数发送邮件往往很不好用,所以不推荐使用这种方法。

方法二,使用管道的形式发送肆逗邮件,主要是使用php中的popen函数。使用管道的方法发送邮件属于比较底层的操作,它取决于用户调用程序的稳定性。所以相比mail函数,这是一种可选的发送邮件的方式,但是这些本地的邮件系统都太复杂了,用户可能不会配置。

方法三(推荐),使用phpmailer。phpmailer类是一个开源的发送邮件类,可以从

官网下载,它含两个文件裂肆卖class.tp.php和class.phpmailer.php。代码如下

include_once(“class.phpmailer.php”);

/**

* 定义邮件模块配制信息

*/

define(“TP_HOST”,”tp.mail.yahoo.com”);// TP 主机

define(“TP_MAIL”,” “);// TP 用户email

define(“TP_PASS”,” XXXX”);// TP 用的密码

define(“SERVICE_MAIL”,” “); // TP 用户email

define(“SERVICE_NAME”,”PHPBOOK邮件测试”); // TP 用的名字

/**

* 使用phpmailer发邮件模块

*

* @param string $email

* @param string $user

* @param string $subject

* @param string $body

* @return bool

*/

function sendMail($email,$user,$subject,$body)

{

$mail = new PHPMailer();

//$this;

$mail->IsTP(); // 设雹配置使用TP

$mail->Host = TP_HOST;// 设置TP服务器地址

$mail->TPAuth = true;// 打开TP权限验证

$mail->Username = TP_MAIL;// TP 用户名

$mail->Password = TP_PASS;// TP 服务器密码

$mail->From = SERVICE_MAIL;// 设置发送者地址

$mail->FromName = SERVICE_NAME; // 设置发送者名字

$mail->AddAddress($email, $user); // 添加接收者地址

$mail->AddReplyTo(SERVICE_MAIL, SERVICE_NAME); // 设置回复地址

$mail->WordWrap = 50; // 设置显示格式

$mail->IsHTML(true); // 设置邮件支持html

$mail->Subject = $subject;

$mail->Body = $body;

$mail->AltBody = “”; // 文本类型的邮件

if(!$mail->Send())

{

return $mail->ErrorInfo;

}

return true;

}

//开始发送测试邮件ng: fsockopen() : php_network_getaddresses: getaddrinfo failed: Name or service not known in /var/www/xiehui/admin/mail/class.tp.php on line 89

$tomail = ” “;

$user = ” XXXXlinux”;

$_mailSubject = “邮件测试示例!”; // 发给用户的邮件标题小组

$_mailBody = “新浪网”; // 邮件内容小组

sendMail($tomail,$user,$_mailSubject,$_mailBody);

?>

实验证明yahoo的tp很好用,号称sina的其实并不好用,我卡在着好长时间。

方法四,给予socket编写的程序,源代码如下

使用socket发送邮件的封装类:

class sendmail{

var $lastmessage; //记录最后返回的响应信息

var $lastact; //最后的动作,字符串形式

var $welcome; //用在HELO后面,欢迎用户

var $debug; //是否显示调试信息

var $tp;//tp服务器

var $port;//tp端口号

var $fp;//socket句柄

//发送邮件函数

function send_mail($tp, $welcome=””, $debug=false) {

if(empty($tp)) die(“TP不能为空!”);

$this->tp=$tp;

if(empty($welcome)) {

$this->welcome=gethostbyaddr(“localhost”);

}else

$this->welcome=$welcome;

$this->debug=$debug;

$this->lastmessage=””;

$this->lastact=””;

$this->port=”25″;

}

//显示调试信息

function show_debug($message, $inout) {

if ($this->debug) {

if($inout==”in”){ //响应信息

$m=’> ‘;

if(!ereg(“\n$”, $message))

$message .= “

“;

$message=nl2br($message);

echo “${m}${message}”;

}

}

//执行传递的命令

function do_command($command, $code) {

$this->lastact=$command;

$this->show_debug($this->lastact, “out”);

fputs ( $this->fp, $this->lastact );

$this->lastmessage = fgets ( $this->fp, 512 );

$this->show_debug($this->lastmessage, “in”);

if(!ereg(“^$code”, $this->lastmessage))

return false;

else

return true;

}

//邮件发送处理

function send( $to,$from,$subject,$message) {

//连接服务器

$this->lastact=”connect”;

$this->show_debug(“连接到TP 服务器: “.$this->tp, “out”);

$this->fp = fsockopen ( $this->tp, $this->port );

if ( $this->fp ) {

$this->set_socket_blocking( $this->fp, true );

$this->lastmessage=fgets($this->fp,512);

$this->show_debug($this->lastmessage, “in”);

if (! ereg ( “^220”, $this->lastmessage ) ) {

return false;

}else{

$this->lastact=”HELO ” . $this->welcome . “\n”;

if(!$this->do_command($this->lastact, “250”)){

fclose($this->fp);

return false;

}

$this->lastact=”MAIL FROM: $from” . “\n”;

if(!$this->do_command($this->lastact, “250”)){

fclose($this->fp);

return false;

}

$this->lastact=”RCPT TO: $to” . “\n”;

if(!$this->do_command($this->lastact, “250”)){

fclose($this->fp);

return false;

}

//开始发送邮件正文

$this->lastact=”DATA\n”;

if(!$this->do_command($this->lastact, “354”)){

fclose($this->fp);

return false;

}

//开始处理邮件主题头

$head=”Subject: $subject\n”;

if(!empty($subject) && !ereg($head, $message)){

$message = $head.$message;

}

//开始处理邮件From头

$head=”From: $from\n”;

if(!empty($from) && !ereg($head, $message)) {

$message = $head.$message;

}

//开始处理邮件To头

$head=”To: $to\n”;

if(!empty($to) && !ereg($head, $message)) {

$message = $head.$message;

}

//处理结束串

if(!ereg(“\n\.\n”, $message))

$message .= “\n.\n”;

$this->show_debug($message, “out”);

fputs($this->fp, $message);

$this->lastact=”QUIT\n”;

if(!$this->do_command($this->lastact, “250”)){

fclose($this->fp);

return false;

}

}

return true;

}else{

$this->show_debug(“连接失败!!”, “in”);

return false;

}

}

}

?>

使用socket发送邮件示例:

include (“./sendmail.class.php”);

$mail = new sendmail();

$email = “您好,这是一个测试邮件!”;

$sendmail = new send_mail(“tp.mail.126.com”,”PHPBOOK”,true); //显示调示信息

if($mail->send(“”, “”, “测试SOCKET邮件”, $email)) {

echo “发送成功!

“;

}else{

echo “发送失败!

“;

}

相关问题拓展阅读:

    关于linux 外网发邮件的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。


    数据运维技术 » linux下如何发送mail,难道一定要开tp服务吗 (linux 外网发邮件)