, когда я использую следующий код в моем IndexController.php, я получаю ошибку, как показано ниже кода:
код в IndexController.php
<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$config = array
(
'auth' => 'login',
'username' => 'mymail@gmail.com',
'password' => 'mypass',
'ssl' => 'ssl',
'port' => 465,
);
$transport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $config);
$mail = new Zend_Mail();
$mail->addTo('othermail@gmail.com', 'me' )
->setFrom('mymail@gmail.com', 'me')
->setSubject('your trial at fitness first')
->setBodyText('email body in plain text')
->send($transport);
}
}
Ошибка, отображаемая на странице:
An error occurred
Application error
Я никогда не редактировал другие файлы, просто установил Zend, создал новый проект и продолжил, как говорилось в руководстве ...
Но я застрял @ вышеуказанная ошибка