Sending email using Zend Framework and PHP
问题 I working on a form whereby when the user enter in their email account and click on send, an email will be sent to their email account. I have everything worked out. Just that it doesnt send the email to my account. Anyone have any ideas? Is there a configuration that I left out or something? This is the sample from my controller: public function retrieveemailAction(){ $users = new Users(); $email = $_POST['email']; $view = Zend_Registry::get('view'); if($users->checkEmail($_POST['email'])) {