MailPop3.object
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. class MailPop3 extends BaseObject {
  3.    var $user_name;
  4.    var $password;
  5.    var $server;
  6.    var $port;
  7.    var $connection_string;
  8.    var $connected;
  9.    Function MailPop3( $user_name = '', $password = '', $server = '', $port = '' ) {
  10.       $this->user_name = '';
  11.       $this->password  = '';
  12.       $this->server    = '';
  13.       $this->port      = '';
  14.       if ( $user_name != '' ) {
  15.          $this->user_name = $user_name;
  16.       }
  17.       if ( $password != '' ) {
  18.          $this->password = $password;
  19.       }
  20.       if ( $server != '' ) {
  21.          $this->server = $server;
  22.       }
  23.       if ( $port != '' ) {
  24.          $this->port = $port;
  25.       }
  26.       $this->connection_string = '';
  27.       $this->connected         = 0;
  28.    }
  29.    Function CopySettings() {
  30.    }
  31.    Function Connect() {
  32.       if ( $this->server_port == '' ) {
  33.          $this->server_port = 110;
  34.       }
  35.    }
  36. }
  37. ?>