6

我正在制作一个表单,当用户输入他们的电子邮件帐户并单击发送时,一封电子邮件将发送到他们的电子邮件帐户。

我已经解决了一切。只是它不会将电子邮件发送到我的帐户。有人有想法么?是否有我遗漏的配置或其他什么?

这是我的控制器的示例:

public function retrieveemailAction(){

    $users = new Users();
    $email = $_POST['email'];                
    $view = Zend_Registry::get('view'); 

    if($users->checkEmail($_POST['email'])) {

        // The Subject
        $subject = "Email Test";

        // The message
        $message = "this is a test";            

        // Send email
        // Returns TRUE if the mail was successfully accepted for delivery, FALSE otherwise.
        // Use if command to display email message status
        if(mail($email, $subject, $message, $headers)) {
            $view->operation = 'true';
        }            
    } else {
         $view->operation = 'false';
    }

    $view->render('retrieve.tpl');
}
4

4 回答 4

27

我建议您使用Zend_Mail而不是mail(). 它会自动处理很多东西,而且效果很好。

你有 SMTP 服务器吗?尝试在没有您自己的 SMTP 服务器的情况下发送邮件可能会导致邮件无法发送。

这是我使用Zend_Mail和 Gmail 发送邮件的方法:

Bootstrap.php中,我配置了默认邮件传输:

protected function _initMail()
{
    try {
        $config = array(
            'auth' => 'login',
            'username' => 'username@gmail.com',
            'password' => 'password',
            'ssl' => 'tls',
            'port' => 587
        );

        $mailTransport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $config);
        Zend_Mail::setDefaultTransport($mailTransport);
    } catch (Zend_Exception $e){
        //Do something with exception
    }
}

然后要发送电子邮件,我使用以下代码:

//Prepare email
$mail = new Zend_Mail();
$mail->addTo($email);
$mail->setSubject($subject);
$mail->setBody($message);
$mail->setFrom('username@gmail.com', 'User Name');

//Send it!
$sent = true;
try {
    $mail->send();
} catch (Exception $e){
    $sent = false;
}

//Do stuff (display error message, log it, redirect user, etc)
if($sent){
    //Mail was sent successfully.
} else {
    //Mail failed to send.
}
于 2010-02-25T17:12:26.183 回答
1

首先我会切换到使用 Zend_Mail。其次,我会在某个地方的 smtp 服务器上使用真实的邮件帐户并从那里发送。很多时候从服务器本身发送有限制,但使用实际的邮件服务器通常可以解决这个问题。

于 2010-02-17T03:47:20.110 回答
1

在行$mail->setBody($message);中,将其更改为$mail->setBodyText($message);

于 2013-09-05T08:15:29.467 回答