2

我收到以下错误:

没有收件人无法发送消息

这是在尝试使用 swiftmailer 发送电子邮件时。我的代码在 localhost 中工作,并且具有从发送者到接收者所需的所有参数,但它抛出一个错误,说它无法在没有接收者的情况下发送。

这是我的代码:

public function email()
{


    Mail::send('emails.auth.mail', array('token'=>'SAMPLE'), function($message){
        $message = Swift_Message::newInstance();
        $email = $_POST['email']; $name = $_POST['name']; $subject = $_POST['subject']; $msg = $_POST['msg']; 

        $message = Swift_Message::newInstance()
            ->setFrom(array($email => $name))
            ->setTo(array('name@gmail.com' => 'Name'))           
            ->setSubject($subject)
            ->setBody($msg);




        $transport = Swift_MailTransport::newInstance('smtp.gmail.com', 465, 'ssl');
        //$transport->setLocalDomain('[127.0.0.1]');

        $mailer = Swift_Mailer::newInstance($transport);
        //Send the message
        $result = $mailer->send($message);
        if($result){

             var_dump('worked');
        }else{
            var_dump('Did not send mail');
        }
  }

}

4

3 回答 3

7

您无需在实施中添加 SMTP 信息即可执行此操作 Mail::send()

假设您还没有,请转到app/config/mail.php并编辑以下内容以满足您的需要:

'host' => 'smtp.gmail.com',
'port' => 465,
'encryption' => 'ssl',
'username' => 'your_username',
'password' => 'your_password',

那么你的代码应该很简单:

public function email()
{
    Mail::send('emails.auth.mail', array('token'=>'SAMPLE'), function($message)
    {
        $message->from( Input::get('email'), Input::get('name') );

        $message->to('name@gmail.com', 'Name')->subject( Input::get('subject') );
    });
}

所以,希望问题是配置之一。您是否有其他环境设置可能会覆盖app/config/mail.php服务器中不起作用的配置设置?

于 2013-08-13T21:49:39.217 回答
1

请确保您已正确配置了所有必要的配置 /app/config/mail.php。确保所有配置对于电子邮件无法正常工作的环境都是正确的。

于 2013-08-13T18:01:44.980 回答
1

如果您想将您的 Gmail 帐户用作 SMTP 服务器,请在 app/config/mail.php 中设置以下内容:

'driver' => 'smtp',
'host' => 'smtp.gmail.com',
'port' => 465,
'encryption' => 'ssl',
'username' => 'your-email@gmail.com',
'password' => 'your-password',

切换到在线服务器时,您要保护此文件或切换提供商,以免暴露您的 gmail 凭据。端口 587 用于 mailgun 而不是 gmail。

于 2013-11-22T05:42:16.360 回答