Laravel Mailgun发送两封邮件

时间:2016-07-29 16:08:17

标签: php laravel email laravel-5.2 mailgun

当我的网站用户使用联系表格时,我希望向用户发送带有确认信息的邮件,并使用创建的票证向我发送其他消息。

我使用的是Laravel 5.2 + Mailgun

但是只将最后一封邮件发送到我的电子邮件hello@frikinow.com,用户确认电子邮件不会发送。

Laravel不会返回任何错误。这是我的代码:

// for the client mail
                Mail::send('emails.success_email', ['name' => Input::get('nombre'), 'content' => $content], function ($message)
                {
                    $message->subject('FrikiNow ha recibido su consulta');

                    $message->from('hello@frikinow.com', 'FrikiNow Support');

                    $message->to(Input::get('email'));

                });

                // for me
                Mail::send('emails.ticket_email', ['email'=> Input::get('email'),'name' => Input::get('nombre'), 'content' => Input::get('mensaje'),'mobile_phone' =>Input::get('telefono')], function ($message)
                {
                    $message->subject('Ticket de Cliente: '.Input::get('asunto'));

                    $message->from('hello@frikinow.com', Input::get('nombre'));

                    $message->to('hello@frikinow.com');

                });

如何一次发送两封不同的电子邮件?

1 个答案:

答案 0 :(得分:0)

您可以添加 CC 标题

我不完全了解MailGun API,但你可以试试这个:

$message->cc('email@example.com'); //Copy of the message goes to this email