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
Post a Comment