免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1964 | 回复: 3
打印 上一主题 下一主题

能够实现发邮件的程序(适合WINDOWS和linux[sendmail]) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-06-25 17:45 |只看该作者 |倒序浏览
<?php
/***************************************
** Filename.......: class.smtp.inc
** Project........: SMTP Class
** Version........: 1.00b
** Last Modified..: 30 September 2001
***************************************/

        define('SMTP_STATUS_NOT_CONNECTED', 1, TRUE);
        define('SMTP_STATUS_CONNECTED', 2, TRUE);

        class smtp{

                var $connection;
                var $recipients;
                var $headers;
                var $timeout;
                var $errors;
                var $status;
                var $body;
                var $from;
                var $host;
                var $port;
                var $helo;
                var $auth;
                var $user;
                var $pass;

                /***************************************
        ** Constructor function. Arguments:
                ** $params - An assoc array of parameters:
                **
                **   host    - The hostname of the smtp server                Default: localhost
                **   port    - The port the smtp server runs on                Default: 25
                **   helo    - What to send as the HELO command                Default: localhost
                **             (typically the hostname of the
                **             machine this script runs on)
                **   auth    - Whether to use basic authentication        Default: FALSE
                **   user    - Username for authentication                        Default: <blank>;
                **   pass    - Password for authentication                        Default: <blank>;
                **   timeout - The timeout in seconds for the call        Default: 10
                **             to fsockopen()
        ***************************************/

                function smtp($params = array()){

                        if(!defined('CRLF'))
                                define('CRLF', "\r\n", TRUE);
                       
                        $this->;timeout        = 10;
                        $this->;status        = SMTP_STATUS_NOT_CONNECTED;
                        $this->;host                = 'localhost';
                        $this->;port                = 25;
                        $this->;helo                = 'localhost';
                        $this->;auth                = FALSE;
                        $this->;user                = '';
                        $this->;pass                = '';
                        $this->;errors   = array();

                        foreach($params as $key =>; $value){
                                $this->;$key = $value;
                        }
                }

                /***************************************
        ** Connect function. This will, when called
                ** statically, create a new smtp object,
                ** call the connect function (ie this function)
                ** and return it. When not called statically,
                ** it will connect to the server and send
                ** the HELO command.
        ***************************************/

                function connect($params = array()){

                        if(!isset($this->;status)){
                                $obj = new smtp($params);
                                if($obj->;connect()){
                                        $obj->;status = SMTP_STATUS_CONNECTED;
                                }

                                return $obj;

                        }else{
                                $this->;connection = fsockopen($this->;host, $this->;port, $errno, $errstr, $this->;timeout);
                                //socket_set_timeout($this->;connection, 0, 250000);

                                $greeting = $this->;get_data();
                                if(is_resource($this->;connection)){
                                        return $this->;auth ? $this->;ehlo() : $this->;helo();
                                }else{
                                        $this->;errors[] = 'Failed to connect to server: '.$errstr;
                                        return FALSE;
                                }
                        }
                }

                /***************************************
        ** Function which handles sending the mail.
                ** Arguments:
                ** $params        - Optional assoc array of parameters.
                **            Can contain:
                **              recipients - Indexed array of recipients
                **              from       - The from address. (used in MAIL FROM,
                **                           this will be the return path
                **              headers    - Indexed array of headers, one header per array entry
                **              body       - The body of the email
                **            It can also contain any of the parameters from the connect()
                **            function
        ***************************************/

                function send($params = array()){

                        foreach($params as $key =>; $value){
                                $this->;set($key, $value);
                        }

                        if($this->;is_connected()){

                                // Do we auth or not? Note the distinction between the auth variable and auth() function
                                if($this->;auth){
                                        if(!$this->;auth())
                                                return FALSE;
                                }

                                $this->;mail($this->;from);
                                if(is_array($this->;recipients))
                                        foreach($this->;recipients as $value)
                                                $this->;rcpt($value);
                                else
                                        $this->;rcpt($this->;recipients);

                                if(!$this->;data())
                                        return FALSE;

                                // Transparency
                                $headers = str_replace(CRLF.'.', CRLF.'..', trim(implode(CRLF, $this->;headers)));
                                $body    = str_replace(CRLF.'.', CRLF.'..', $this->;body);
                                $body    = $body[0] == '.' ? '.'.$body : $body;

                                $this->;send_data($headers);
                                $this->;send_data('');
                                $this->;send_data($body);
                                $this->;send_data('.');

                                return (substr(trim($this->;get_data()), 0, 3) === '250');
                        }else{
                                $this->;errors[] = 'Not connected!';
                                return FALSE;
                        }
                }
               
                /***************************************
        ** Function to implement HELO cmd
        ***************************************/

                function helo(){
                        if(is_resource($this->;connection)
                                        AND $this->;send_data('HELO '.$this->;helo)
                                        AND substr(trim($error = $this->;get_data()), 0, 3) === '250' ){

                                return TRUE;

                        }else{
                                $this->;errors[] = 'HELO command failed, output: ' . trim(substr(trim($error),3));
                                return FALSE;
                        }
                }
               
                /***************************************
        ** Function to implement EHLO cmd
        ***************************************/

                function ehlo(){
                        if(is_resource($this->;connection)
                                        AND $this->;send_data('EHLO '.$this->;helo)
                                        AND substr(trim($error = $this->;get_data()), 0, 3) === '250' ){

                                return TRUE;

                        }else{
                                $this->;errors[] = 'EHLO command failed, output: ' . trim(substr(trim($error),3));
                                return FALSE;
                        }
                }
               
                /***************************************
        ** Function to implement AUTH cmd
        ***************************************/

                function auth(){
                        if(is_resource($this->;connection)
                                        AND $this->;send_data('AUTH LOGIN')
                                        AND substr(trim($error = $this->;get_data()), 0, 3) === '334'
                                        AND $this->;send_data(base64_encode($this->;user))                        // Send username
                                        AND substr(trim($error = $this->;get_data()),0,3) === '334'
                                        AND $this->;send_data(base64_encode($this->;pass))                        // Send password
                                        AND substr(trim($error = $this->;get_data()),0,3) === '235' ){

                                return TRUE;

                        }else{
                                $this->;errors[] = 'AUTH command failed: ' . trim(substr(trim($error),3));
                                return FALSE;
                        }
                }

                /***************************************
        ** Function that handles the MAIL FROM: cmd
        ***************************************/
               
                function mail($from){

                        if($this->;is_connected()
                                AND $this->;send_data('MAIL FROM:<'.$from.'>;')
                                AND substr(trim($this->;get_data()), 0, 2) === '250' ){

                                return TRUE;

                        }else
                                return FALSE;
                }

                /***************************************
        ** Function that handles the RCPT TO: cmd
        ***************************************/
               
                function rcpt($to){

                        if($this->;is_connected()
                                AND $this->;send_data('RCPT TO:<'.$to.'>;')
                                AND substr(trim($error = $this->;get_data()), 0, 2) === '25' ){

                                return TRUE;

                        }else{
                                $this->;errors[] = trim(substr(trim($error), 3));
                                return FALSE;
                        }
                }

                /***************************************
        ** Function that sends the DATA cmd
        ***************************************/

                function data(){

                        if($this->;is_connected()
                                AND $this->;send_data('DATA')
                                AND substr(trim($error = $this->;get_data()), 0, 3) === '354' ){

                                return TRUE;

                        }else{
                                $this->;errors[] = trim(substr(trim($error), 3));
                                return FALSE;
                        }
                }

                /***************************************
        ** Function to determine if this object
                ** is connected to the server or not.
        ***************************************/

                function is_connected(){

                        return (is_resource($this->;connection) AND ($this->;status === SMTP_STATUS_CONNECTED));
                }

                /***************************************
        ** Function to send a bit of data
        ***************************************/

                function send_data($data){

                        if(is_resource($this->;connection)){
                                return fwrite($this->;connection, $data.CRLF, strlen($data)+2);
                        }else
                                return FALSE;
                }

                /***************************************
        ** Function to get data.
        ***************************************/

                function &get_data(){

                        $return = '';
                        $line   = '';

                        if(is_resource($this->;connection)){
                                while(strpos($return, CRLF) === FALSE OR substr($line,3,1) !== ' '){
                                        $line    = fgets($this->;connection, 512);
                                        $return .= $line;
                                }
                                return $return;

                        }else
                                return FALSE;
                }

                /***************************************
        ** Sets a variable
        ***************************************/
               
                function set($var, $value){

                        $this->;$var = $value;
                        return TRUE;
                }

        } // End of class

                // Password for authentication


function mysmtpmail($mailto,$title,$content){
global $params,$smtp;
//setting smtp server******************************
$params['host'] = 'smtp.163.com';                // The smtp server host/ip
$params['port'] = 25;                                        // The smtp server port
$params['helo'] = exec('hostname');                // What to use when sending the helo command. Typically, your domain/hostname
$params['auth'] = TRUE;                                        // Whether to use basic authentication or not
$params['user'] = 'shusl';                                // Username for authentication
$params['pass'] = 'youpwd';       
//end setting smtp server****************************


//$smtp = new smtp($params);
//$smtp->;connect($params);
$smtp = smtp::connect($params);

        $send_params['from']                = 'shusl@163.com';                        // This is used as in the MAIL FROM: cmd
                                                                                                                                // It should end up as the Return-Path: header
        $send_params['recipients']        = array($mailto);                                // The recipients (can be multiple)
        // Headers
        $send_params['headers'][0]        = 'Return-Path:'.$send_params['from'];
        $send_params['headers'][1]        = 'From: <'.$send_params['from'].'>;';               
        $send_params['headers'][2]        = 'To: '.$mailto;
        $send_params['headers'][3]        = 'Mime-Version:1.0';
        $send_params['headers'][4]        = 'Content-Type: text/html;';
        $send_params['headers'][5] = 'Subject: '.$title;
       
        $send_params['body']                = $content;                                // The body of the email       

        if($smtp->;send($send_params)){
                return TRUE;
        }else{
                return FALSE;
        }
}



$operate_system = "windows";
$email = "shusl@163.com";
$subject = "test mail";
$message = "content";
$MailHeader = "mail header!";
if($operate_system=="windows"//
{                                       
        if(mysmtpmail($email,$subject,$message))
        $checkFlage = true;
        else
        $checkFlage = false;
                       

}
else if($operate_system=="linux"
{
        if(mail($email,$subject,$message,$MailHeader))
        $checkFlage = true;
        else
        $checkFlage = false;
}

?>;

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2004-06-25 18:53 |只看该作者

能够实现发邮件的程序(适合WINDOWS和linux[sendmail])

在哪儿抄的呀?在windows下用不了。

现在的smtp大多是要验证的。这个代码已经过时了。

windows下只能用自己的smtp用socket发信吧。有时间试试看,写出来了再贴出来。

同时欢迎几位老大写个在windows下用本地smtp发信的类看看。 :em11:

论坛徽章:
0
3 [报告]
发表于 2004-06-26 06:55 |只看该作者

能够实现发邮件的程序(适合WINDOWS和linux[sendmail])

phpBB的smtp类,带认证的,写的不错,用起来也方便,记得还能发附件,呵呵!

论坛徽章:
0
4 [报告]
发表于 2004-06-26 06:56 |只看该作者

能够实现发邮件的程序(适合WINDOWS和linux[sendmail])

对拉,牛粪啥时候做的手术~~~嘿嘿!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP