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',
]);
動作しますが、ビュー (ブレード) を送信したいのですが、方法がわかりません。
私のコードは次のとおりです。
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
。
私は何をすべきか?