Sending e-mail in Laravel with custom HTML

后端 未结 5 955
死守一世寂寞
死守一世寂寞 2021-01-06 02:01

I need to send e-mails but I already have the HTML generated, I don\'t want to use laravel blade because I need to apply a CSS Inliner to the HTML, so this is how i generate

5条回答
  •  情歌与酒
    2021-01-06 02:21

    In your controller:

    Mail::to("xyz.gmail.com")->send(new contactMailAdmin($userData));
    

提交回复
热议问题