如何在不使用视图的情况下使用 Laravel 4 发送电子邮件?

2022-08-30 20:23:56

我正在使用Laravel 4开发一个网站,并希望在测试期间向自己发送临时电子邮件,但似乎发送电子邮件的唯一方法是浏览视图。

有可能做这样的事情吗?

Mail::queue('This is the body of my email', $data, function($message)
{
    $message->to('foo@example.com', 'John Smith')->subject('This is my subject');
});

答案 1

正如Laravel邮件上的答案中提到的:传递字符串而不是视图,你可以这样做(代码从Jarek的答案中逐字复制):

Mail::send([], [], function ($message) {
  $message->to(..)
    ->subject(..)
    // here comes what you want
    ->setBody('Hi, welcome user!');
});

还可以使用空视图,方法是将其放入应用/视图/电子邮件/空白.blade.php

{{{ $msg }}}

没有别的。然后你编码

Mail::queue('email.blank', array('msg' => 'This is the body of my email'), function($message)
{
    $message->to('foo@example.com', 'John Smith')->subject('This is my subject');
});

这允许您从应用程序的不同部分发送自定义空白电子邮件,而无需为每个部分创建不同的视图。


答案 2

如果您只想发送文本,则可以使用包含的方法:

Mail::raw('Message text', function($message) {
    $message->from('us@example.com', 'Laravel');
    $message->to('foo@example.com')->cc('bar@example.com');
});

推荐