php多种形式发送邮件(mail qmail邮件系统 phpmailer类)

1. 使用 mail() 函数

没什么好讲的,就是使用系统自带的smtp系统来发送,一般是使用sendmail来发。这个按照各个系统不同而定。使用参考手册。

2. 使用管道的形式

昨天刚测试成功,使用本地的qmail来发送邮件。

代码如下:

/* 使用qmail发送邮件函数 */ 
function send_check_mail($email, $subject,$uid,$buffer) 

 $command =  "/var/qmail/bin/qmail-inject ".$email; //qmail程式地址,$email是要发送的地址 
 $handle = popen($command, "w"); //打开管道  http://www.cnblogs.com/roucheng/
 if (!$handle) { 
  return false; 
 }

$from = "webmaster@unixsky.net"; //发件人 
 fwrite($handle, "From: ".$from."\n"); //往管道写数据 
 fwrite($handle, "Return-Path: ".$from."\n"); 
 fwrite($handle, "To: ".$uid."\n"); 
 fwrite($handle, "Subject: ".$subject."\n"); 
 fwrite($handle, "Mime-Version: 1.0\n"); 
 fwrite($handle, "Content-Type: text/html; charset=\"gb2312\"\n\n"); 
 fwrite($handle, $buffer."\n"); 
 pclose($handle); //关闭管道

return true; 
}

------------------测试发送邮件:

//发送邮件

$subject = "测试邮件";

$uid = $_POST['uid']; //from信息 
$content = "<html><body>".$u_email

." 你好!<br><br>谢谢,本邮件测试!<br</body></html>"; //内容信息

$u_email = "hren@yahoo.com.cn"; //发送到的邮箱 
if (send_check_mail($u_email, $subject, $uid, $content)) {

echo "恭喜!发送投票邮件到你的邮箱!<br><br>请检查你的邮箱:<font color=#CC0033>".$u_email." </font><br><br>". $close; 
 } else {

echo "非常不幸,发送投票邮件到你的邮箱失败,请重试或联系研发人员。<br><br>". $close;

}

当然,也能使用相同的方法来处理sendmail的进程来发送邮件。

下面代码示例:

代码如下:

<?php 
$pp = popen("/usr/sbin/sendmail -t", "w") or die("Cannot fork sendmail"); 
fputs($pp, "To: sterling@designmultimedia.com\r\n"); 
fputs($pp, "Reply-to: $senders_email\r\n"); 
fputs($pp, "From: $senders_email\r\n"); 
fputs($pp, "Subject The Results of your form\r\n\r\n"); 
fputs($pp, "$senders_email sent the fllowing comments:\r\n"); 
fputs($pp, $comments); 
pclose($pp) or die("Cannot close pipe to sendmail"); 
?>

其实这种管道的方法比较底层,取决于你所调用程式的稳定性。所以是一种可选的发送邮件的方式。

3. 使用phpmailer类

是个开源的发送邮件类,主站:http://phpmailer.sourceforge.net

里面是两个文件,一个是class.smtp.php,更有以个是class.phpmailer.php
另外加上官方网站的使用方法:
Examples using phpmailer
1. Advanced ExampleThis demonstrates sending out multiple email messages with binary attachments from a MySQL database with multipart/alternative support.

代码如下:

require("class.phpmailer.php");

$mail = new phpmailer();

$mail->From     = "list@example.com"; 
$mail->FromName = "List manager"; 
$mail->Host     = "smtp1.example.com;smtp2.example.com"; 
$mail->Mailer   = "smtp";

@MYSQL_CONNECT("localhost","root","password"); 
@mysql_select_db("my_company"); 
$query?=?SELECT full_name, email,?hoto?ROM employee?HERE?d=$id"; 
$result??MYSQL_QUERY($query);

while ($row = mysql_fetch_array ($result)) 

    // HTML body 
    $body  = "Hello <font size=\"4\">" . $row["full_name"] . "</font>, <p>"; 
    $body .= "<i>Your</i> personal photograph to this message.<p>"; 
    $body .= "Sincerely, <br>"; 
    $body .= "phpmailer List manager";

// Plain text body (for mail clients that cannot read HTML) 
    $text_body  = "Hello " . $row["full_name"] . ", \n\n"; 
    $text_body .= "Your personal photograph to this message.\n\n"; 
    $text_body .= "Sincerely, \n"; 
    $text_body .= "phpmailer List manager";

$mail->Body    = $body; 
    $mail->AltBody = $text_body; 
    $mail->AddAddress($row["email"], $row["full_name"]); 
    $mail->AddStringAttachment($row["photo"], "YourPhoto.jpg");

if(!$mail->Send()) 
        echo "There has been a mail error sending to " . $row["email"] . "<br>";

// Clear all addresses and attachments for next loop 
    $mail->ClearAddresses(); 
    $mail->ClearAttachments(); 
}

2. Extending phpmailerExtending classes with inheritance is one of the most powerful features of object-oriented programming. It allows you to make changes to the original class for your own personal use without hacking the original classes. Plus, it is very easy to do. I've provided an example:

Here's a class that extends the phpmailer class and sets the defaults for the particular site:
PHP include file: mail.inc.php


代码如下:

require("class.phpmailer.php");

代码如下:

class my_phpmailer extends phpmailer { 
    // Set default variables for all new objects 
    var $From     = "from@example.com"; 
    var $FromName = "Mailer"; 
    var $Host     = "smtp1.example.com;smtp2.example.com"; 
    var $Mailer   = "smtp";                         // Alternative to IsSMTP() 
    var $WordWrap = 75;

// Replace the default error_handler 
    function error_handler($msg) { 
        print("My Site Error"); 
        print("Description:"); 
        printf("%s", $msg); 
        exit; 
    }

// Create an additional function 
    function do_something($something) { 
        // Place your new code here 
    } 
}

Now here's a normal PHP page in the site, which will have all the defaults set above:
Normal PHP file: mail_test.php

代码如下:

require("mail.inc.php");

// Instantiate your new class 
$mail = new my_phpmailer;

// Now you only need to add the necessary stuff 
$mail->AddAddress("josh@example.com", "Josh Adams"); 
$mail->Subject = "Here is the subject"; 
$mail->Body    = "This is the message body"; 
$mail->AddAttachment("c:/temp/11-10-00.zip", "new_name.zip");  // optional name

if(!$mail->Send()) 

   echo "There was an error sending the message"; 
   exit; 
}

echo "Message was sent successfully";

4. 使用PEAR::Net_SMTP组件

PEAR真是个好东西,可能非常多人都不怎么用,至少我目前使用他的DB类,发送邮件类都不错。

需要Net_SMTP类,能去 http://pear.php.net 下载,Net_SMTP类的使用手册:

http://pear.php.net/manual/en/package.networking.net-smtp.php

我使用上面几个类,这个是最佳的,不管是速度还是别的,不过操作涉及到一些简单的smtp协议。

我的使用代码:

代码如下:

//------------------------------------------

require_once 'Net/SMTP.php'; //加载类库

$subject = "测试邮件";

$uid = $_POST['uid']; //from信息 
$content = "<html><body>".$u_email

." 你好!<br><br>谢谢,本邮件测试!<br</body></html>"; //内容信息

$u_email = "hren@yahoo.com.cn"; //发送到的邮箱

$smtp = new Net_SMTP('192.168.0.1'); //smtp服务器 
$smtp->connect(); //连接服务器 
$smtp->helo('unixsky.net'); //发送HELO信息给服务器 
$smtp->mailFrom('hren@unixsky.net'); //发件人地址 
$smtp->rcptTo($u_email); //收件人地址 
$date = date('r'); //获取发信日期 
$smtp->data("Date: $date\r\nFrom: vdddote@eyou.net\r\nTo: $u_email\r\nSubject: $subject\r\nContent-Type: text/html; charset=\"gb2312\"\r\n\r\n$content\r\n"); //添加发送数据并且发送 
$smtp->disconnect(); //关闭连接

(0)

相关推荐

  • phpmailer在服务器上不能正常发送邮件的解决办法

    phpmailer本身是一个很不错的开源邮件类,也非常的易用简单,就是偶尔会出现程序上传到服务器上不能发送邮件的情况,在之前也有同学问过我这个问题,当时的时候总是不以为然,今天终于让我碰上了,用phpmailer 在本地测试正常,上传到服务器上就不行了,当然了是用的SMTP方式,最终确定是fsockopen 函数惹的祸,因为安全原因fsockopen 和pfsockopen 经常被服务器端关闭.解决方法如下: 而代之的应该是 stream_socket_client()函数,不过他的参数有一点不

  • Linux服务器下PHPMailer发送邮件失败的问题解决

    需求 更换服务器之后,我发现我的发送邮件功能失效了!原来的服务器是可以的,一定是哪里出问题了,决定来排查一下.我是用的PHPMailer,SMTP方式发送邮件的. 排查过程 这种方式首先PHP要开启sockets拓展,查了一下phpinfo页面,是开启的: 看了一下openssl也是开启(因为拿了qq邮箱来测),所以没问题: 那就再看一下allow_url_fopen,开启的,没问题: 是不是禁用了函数?没有禁用,没问题: 那配置上就没有问题了,我就想,是不是端口被占用了? 运行一下:netst

  • PHPMailer使用教程(PHPMailer发送邮件实例分析)

    php虽然提供了mail()函数,但并不好用,而PHPMailer是一个不错的邮件发送工具,使用起来也是非常简单! 使用PHPMailer发送邮件: 复制代码 代码如下: <?php header("content-type:text/html;charset=utf-8"); ini_set("magic_quotes_runtime",0); require 'class.phpmailer.php'; try { $mail = new PHPMaile

  • phpmailer发送邮件之后,返回收件人是否阅读了邮件的方法

    很多人在使用phpmailer发送邮件之后,都想知道对方是否阅读了邮件?通常来说,这个我们是无法知道的,那么有没有办法呢? 对于这个问题有一个简单的解决方法,我们知道,邮件内容可以以html 的形式发送,我们可以在内容中插入图片,那么关键就在这个图片里面了. 假设我们的邮件内容是这样的: 文件content.php代码如下: <table width="555" height="50" border="0" align="cent

  • thinkphp使用phpmailer发送邮件的方法

    本文实例讲述了thinkphp使用phpmailer发送邮件的方法.分享给大家供大家参考.具体分析如下: phpmailer发送邮件是php开发者首选的一个邮件发送插件了,下面我来介绍怎么集成phpmailer到thinkphp框架了,感兴趣的朋友可以参考一下. phpmailer发送邮件功能很强大,今天真正的体验一下,这里先简单说一下配置,本人是在thinkphp中使用的. 配置步骤: 1.后台配置发送邮件类,位置admin/common/common.php中,代码如下: 复制代码 代码如下

  • PHP使用PHPMailer发送邮件的简单使用方法

    最近需要用到发送邮件的功能,原本是用PHP自带的mail()函数发送的.php mail()这个方法非常简单.方便.易用,但是除了网易邮箱.QQ邮箱.GMAIL邮箱等常用的邮箱可以收到之外,经测试HOTMAIL.TOM.LIVE等邮箱是收不到此类邮件的.所以就转而使用PHPMailer这个强大的邮件发送类.使用官方自带的一些例子,有些会报 Mailer Error: Could not instantiate mail function. 这个错误.参考了一些资料之后,还是自己写了一个方法.代码

  • PHP借助phpmailer发送邮件

    本地没有发邮件的服务器,借助现成的SMTP服务器发送邮件是个不错的选择,这里使用到的工具是phpmailer ( Version 5.2.0),SMTP服务器就选gmail和163. 1. 使用gmail发送的脚本 include("class.phpmailer.php"); include("class.smtp.php"); //获取一个外部文件的内容 $mail = new PHPMailer(); $body = file_get_contents('co

  • phpmailer发送邮件功能

    PHP内置的mail函数使用起来不够方便,另外受其他语言的影响,博主更偏好面向对象的包管理模式,因此phpmailer成为了我用PHP发送邮件的首选,这里分享给大家. 库导入 这里使用composer进行包管理,以下是json文件: { "name": "", "description": "test the mail", "require": { "PHPMailer/PHPMailer&quo

  • PHPMailer邮件类利用smtp.163.com发送邮件方法

    第一步:需要下载PHPMailer文件包phpmailer-1.73.tar.gz 来自开源社区: http://phpmailer.sourceforge.net/ 第二步:确认你的服务器系统已经支持socket 如下图,通过phpinfo();查看是否支持sockets 如果没有这一项就请注意: socket 是属于PHP扩展部分,编译时必须给定一个用于./configure --enable-sockets 的配置选项. 第三步:把文件解压到你的web服务器目录下,调用类就可以了,说明:首

  • phpmailer简单发送邮件的方法(附phpmailer源码下载)

    本文实例讲述了phpmailer简单发送邮件的方法.分享给大家供大家参考,具体如下: 首先,点击此处本站下载相应的php文件. 解压后有2个php文件(2个类)  1个html文件(API) 将2个php文件放到php项目中 简述:我这里是用一个163的邮箱发消息给126的邮箱 关键代码如下: <?php require 'class.phpmailer.php'; $mail = new PHPMailer(true); //建立邮件发送类 $mail->CharSet = "UT

随机推荐