php - Laravel Send Email with HTML Elements -


i trying send email using smtp in laravel html elements coming along in email body.

i.e.,

i getting below mail

<h2>welcome</h2><br><p>hello user</p><br><p>thanks</p> 

instead of

welcome


hello user


thanks

here code :

what thing missing make applied on content of email

$msg = "<h2>welcome</h2><br><p>hello user</p><br><p>thanks</p>" $message->setbody($msg);                             $message->to('user@gmail.com');                          $message->subject('welcome mail');                   

try this...

    $msg = "welcome      hello user     thanks"      $message->setbody($msg);                                  $message->to('user@gmail.com');                               $message->subject('welcome mail');        

Comments

Popular posts from this blog

ruby on rails - RuntimeError: Circular dependency detected while autoloading constant - ActiveAdmin.register Role -

c++ - OpenMP unpredictable overhead -

javascript - Wordpress slider, not displayed 100% width -