使用Mailgun发送刀片模板邮件

时间:2018-09-20 13:04:53

标签: php laravel laravel-blade mailgun laravel-mail

我正在尝试使用Mailgun发送邮件。如果我这样写:

from EOC_Module.eoc.script.config import Config

它可以工作,但是我想发送一个视图(刀片),我不知道该怎么办。

我的代码是:

$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时,这不起作用。

我该怎么办?

1 个答案:

答案 0 :(得分:1)

<app-page-form-part> <block id="{{element.id}}" class="row" [hidden]="hide"> <h2>{{element.title}}</h2> <div class="{{element['col-size']}}"> <ng-template #BlockComponentContainer></ng-template> </div> </block> </app-page-form-part> 添加到构建调用中,以将视图内容存储为字符串:

->render()