David Powers Lesson08 forgotten.php problem
I have a strange problem when running forgotten.php. The program works alright initially with the setting of mail_connector.php as below. I managed to send and received email. Everything works fine intially. After sometime, I found problem running the same program again. This time it generates error message of 'Notice: Underfined index: calvin_cccc@yahoo.com in c:\vhosts\phpcs5\lesson8\scripts\request_reset.php on line 25' and also message 'No connection could be made because the target machine actively refused it.'
Any idea why ?
Mail_Connector.php
<?php
$mailhost = 'mail.agri-organica.com';
$mailconfig = array('auth' => 'login',
'username' => 'calvin@agri-organica.com',
'password' => 'password');
$transport = new Zend_Mail_Transport_Smtp($mailhost, $mailconfig);
Zend_Mail::setDefaultTransport($transport);
