使用 mailgun 发送 blade 模板邮件
Send blade template mail with mailgun
我正在尝试使用 Mailgun 发送邮件。如果我这样写:
$mg = Mailgun::create('xxxx');
$mg->messages()->send('xxxx', [
'from' => 'dmt.akyol@gmail.com',
'to' => 'dmt.akyol@gmail.com',
'subject' => 'Your Link To Login!',
'text' => 'hello',
]);
有效,但我想发送一个视图 (blade),但我不知道该怎么做。
我的代码是:
public function build(array $customer)
{
return view('link')->with([
'customer'=> $customer,
]);
}
public function sendContactForm(array $customer)
{
$aaa=$this->build($customer);
$mg = Mailgun::create('xxxxxx')
$mg->messages()->send('xxxx'), [
'from' => $customer['customerEmail'],
'to' => ' dmt.akyol@gmail.com',
'subject' => 'Contact Message',
'html' => $aaa,
]);
}
当我写 html
或 text
时,这不起作用。
我该怎么办?
将 ->render()
添加到构建调用以将视图的内容存储为字符串:
public function build(array $customer)
{
return view('link')->with([
'customer'=> $customer,
])->render();
}
我正在尝试使用 Mailgun 发送邮件。如果我这样写:
$mg = Mailgun::create('xxxx');
$mg->messages()->send('xxxx', [
'from' => 'dmt.akyol@gmail.com',
'to' => 'dmt.akyol@gmail.com',
'subject' => 'Your Link To Login!',
'text' => 'hello',
]);
有效,但我想发送一个视图 (blade),但我不知道该怎么做。
我的代码是:
public function build(array $customer)
{
return view('link')->with([
'customer'=> $customer,
]);
}
public function sendContactForm(array $customer)
{
$aaa=$this->build($customer);
$mg = Mailgun::create('xxxxxx')
$mg->messages()->send('xxxx'), [
'from' => $customer['customerEmail'],
'to' => ' dmt.akyol@gmail.com',
'subject' => 'Contact Message',
'html' => $aaa,
]);
}
当我写 html
或 text
时,这不起作用。
我该怎么办?
将 ->render()
添加到构建调用以将视图的内容存储为字符串:
public function build(array $customer)
{
return view('link')->with([
'customer'=> $customer,
])->render();
}