4

私は彼らのウェブサイトからSwift Mailerをダウンロードし、次のコードで簡単なメールを送信しようとしました

     <?php
     require_once 'lib/swift_required.php';

    $transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25)
    ->setUsername('your username')
     ->setPassword('your password')
      ;


    $mailer = Swift_Mailer::newInstance($transport);

  //Create a message
  $message = Swift_Message::newInstance('Wonderful Subject')
  ->setFrom(array('john@doe.com' => 'John Doe'))
 ->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
 ->setBody('Here is the message itself')
 ;

 //Send the message
 $result = $mailer->send($message);

?>

ページを実行すると、エラーが発生します

      Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: No such host is known. in E:\web_sites\swift_mail\lib\classes\Swift\Transport\StreamBuffer.php  on line 233

    Warning: fsockopen() [function.fsockopen]: unable to connect to smtp.anyhost.com:25 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) in E:\web_sites\swift_mail\lib\classes\Swift\Transport\StreamBuffer.php on line 233

   Fatal error: Uncaught exception 'Swift_TransportException' with message 'Connection could not be established with host smtp.domain.com [php_network_getaddresses: getaddrinfo failed: No such host is known. #0]' in E:\web_sites\swift_mail\lib\classes\Swift\Transport\StreamBuffer.php:235 Stack trace: #0 E:\web_sites\swift_mail\lib\classes\Swift\Transport\StreamBuffer.php(70): Swift_Transport_StreamBuffer->_establishSocketConnection() #1 E:\web_sites\swift_mail\lib\classes\Swift\Transport\AbstractSmtpTransport.php(101): Swift_Transport_StreamBuffer->initialize(Array) #2 E:\web_sites\swift_mail\lib\classes\Swift\Mailer.php(74): Swift_Transport_AbstractSmtpTransport->start() #3 E:\web_sites\swift_mail\test.php(33): Swift_Mailer->send(Object(Swift_Message)) #4 {main} thrown in E:\web_sites\swift_mail\lib\classes\Swift\Transport\StreamBuffer.php on line 235

行を削除すると

  $result = $mailer->send($message);

次に、ページが実行され、エラーメッセージが表示されません。上記の行を追加してメールを送信するとすぐに、エラーが発生しました。

ファイル内の送信サーバー、ポート、ユーザー ID とパスワードは正しいです。

ありがとう

4

3 に答える 3

4

サーバー smtp.domain.org を探していますが、解決できません。

スタック トレードの最後のステップが呼び出している行を見ると、例外がスローされていることがわかります。

if (!$this->_stream = fsockopen($host, $this->_params['port'], $errno, $errstr, $timeout))
{
  throw new Swift_TransportException(
    'Connection could not be established with host ' . $this->_params['host'] .
    ' [' . $errstr . ' #' . $errno . ']'
    );
}

したがって、有効な smtp サーバーを入力するか、send() 行を try/catch でラップして例外をキャッチし、どこかに記録するか無視する必要があります。

于 2010-03-22T20:47:55.137 に答える
3

エラーは、あなたが知る必要があるすべてを教えてくれます:

getaddrinfo failed: No such host is known.

指定された SMTP サーバー (smtp.domain.org) が存在しないため、メーラー スクリプトはそれに接続して電子メールを送信できません。少なくとも domain.org ドメインは存在するので、別の名前の SMTP サーバーを持っている可能性があります。

marc@panic:~$ host -t soa domain.org
domain.org has SOA record ns.domain.org. sales.domain.org. 1267596439 10800 3600 604800 3600
marc@panic:~$ host -t mx domain.org
domain.org mail is handled by 10 mail.domain.org.
marc@panic:~$ host domain.org
domain.org has address 208.109.97.130
domain.org mail is handled by 10 mail.domain.org.

存在する他の SMTP ホストを指定して、再試行してください。

于 2010-03-22T20:49:05.117 に答える