以下のスニペット:
$config = array('auth' => 'login',
'username' => 'myusername',
'password' => 'password');
$transport = new Zend_Mail_Transport_Smtp('mail.server.com', $config);
$mail = new Zend_Mail();
$mail->setBodyText('This is the text of the mail.');
$mail->setFrom('sender@test.com', 'Some Sender');
$mail->addTo('recipient@test.com', 'Some Recipient');
$mail->setSubject('TestSubject');
$mail->send($transport);
...次のエラーをスローしています:
"No connection could be made because the target machine actively refused."
スニペットの間違いは何ですか?zendフレームワークのオンラインチュートリアルから取得しました。
前もって感謝します。