mercredi 11 octobre 2017

Send mail php laravel with gmail

I always use phpmailer , how can I send e-mail without to make new view page ( for ex in phpmailer it use $mail->MsgHTML = ('<h4></h4') )

here is my controller

     $content=`'<h4>aaaaaaaaaa</h4>';`

    Mail::send('[dont want to use blade]', ['title' => "test", 'content' => $content], function ($message)
    {

        $message->from('xxx@gmail.com', 'xxxx@gmail.com');
        $message->to('aaaa@gmail.com');

// can i add HTML tag into content in here without using blade template
        $message->text('aaaa@gmail.com');

    });



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire