My controller is
public function basic_email() { $data = array('name'=>"Virat Gandhi",'roll'=>"123"); Mail::send(['text'=>'mail'], $data, function($message) { $message->to('[email protected]', 'Basil Baby')->subject ('Laravel Basic Testing Mail'); $message->from('[email protected]','Virat Gandhi'); }); echo "Basic Email Sent. Check your inbox."; }
My blade is
Hi, {{ $name }} your roll number is {{$roll}} please click on the link to <a href="#">verify your account</a> Mail is being received. but the mail body is displaying html content as such. How to make verify you account a html link in mail body