0

PHPMailer http://phpmailer.worxware.com/index.php?pg=examplesを使用して、実際に電子メールを送信せずに、SMTP設定が機能しているかどうかをテストするにはどうすればよいですか?

編集:たぶん、これをもっと一般的にして、電子メールを送信せずに、PHPを使用してSMTP接続をチェックする方法を尋ねる必要があります。

4

1 に答える 1

3

PHPMailerを使用している場合は、送信する前にConnect()メソッドを使用して、接続が正しくない場合にエラーをチェックできます。

  /**
  * Connect to the server specified on the port specified.
  * If the port is not specified use the default SMTP_PORT.
  * If tval is specified then a connection will try and be
  * established with the server for that number of seconds.
  * If tval is not specified the default is 30 seconds to
  * try on the connection.
  *
  * SMTP CODE SUCCESS: 220
  * SMTP CODE FAILURE: 421
  * @access public
  * @return bool
  */
  public function Connect($host, $port = 0, $tval = 30) {
    // set the error val to null so there is no confusion
    $this->error = null;

    // make sure we are __not__ connected
    if($this->connected()) {
      // already connected, generate error
      $this->error = array("error" => "Already connected to a server");
      return false;
    }

    if(empty($port)) {
      $port = $this->SMTP_PORT;
    }

    // connect to the smtp server
    $this->smtp_conn = @fsockopen($host,    // the host of the server
                                  $port,    // the port to use
                                  $errno,   // error number if any
                                  $errstr,  // error message if any
                                  $tval);   // give up after ? secs
    // verify we connected properly
    if(empty($this->smtp_conn)) {
      $this->error = array("error" => "Failed to connect to server",
                           "errno" => $errno,
                           "errstr" => $errstr);
      if($this->do_debug >= 1) {
        echo "SMTP -> ERROR: " . $this->error["error"] . ": $errstr ($errno)" . $this->CRLF . '<br />';
      }
      return false;
    }

    // SMTP server can take longer to respond, give longer timeout for first read
    // Windows does not have support for this timeout function
    if(substr(PHP_OS, 0, 3) != "WIN")
      socket_set_timeout($this->smtp_conn, $tval, 0);

    // get any announcement
    $announce = $this->get_lines();

    if($this->do_debug >= 2) {
      echo "SMTP -> FROM SERVER:" . $announce . $this->CRLF . '<br />';
    }

    return true;
  }

PHPMailer SVNから)

于 2012-09-17T13:20:39.533 に答える