当前位置:早雪网网络学院编程文档其他语言

php通过smtp发送邮件

减小字体 增大字体 作者:未知  来源:从互联网收集整理并转载  发布时间:2005-06-03 00:56:07

<?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: 5
  **             to fsockopen()
        ***************************************/

  function smtp($params = array()){

   if(!defined('CRLF'))
    define('CRLF', "\r\n", TRUE);
   
   $this->timeout = 5;
   $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:

[1] [2] [3] [4]  下一页

Tags:

[数据载入中...] [返回上一页] [打 印]
  • 好的评价 如果您觉得此文章好,就请您
      0%(0)
  • 差的评价 如果您觉得此文章差,就请您
      0%(0)

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论