我使用以下代码使用godaddy SMTP发送电子邮件。
$config = array('auth' => 'login', 'username' => 'user@mydowmain.com', 'password' => 'mypass');
$transport = new Zend_Mail_Transport_Smtp('smtpout.secureserver.net', $config);
$mail = new Zend_Mail('UTF-8');
$mail->setBodyText('This is the text of the mail again.');
$mail->setFrom('user@mydowmain.com', 'User');
$mail->addTo('me@domain.com', 'Me');
$mail->setSubject('This is mail test again');
$mail->send($transport);
电子邮件有效。我可以在收件箱中看到该电子邮件。但是在页面上它会抛出一个致命的错误
Fatal error: Exception thrown without a stack frame in Unknown on line 0
我无法追查它。在这方面的任何帮助将受到高度赞赏。 感谢