Advertisement
fadlyshafa

Untitled

Aug 10th, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. public function index(){
  2.         $data = array('name'=>"Virat Gandhi");
  3.         \Mail::send('mail', $data, function($message) {
  4.             $message->to('fadlyrifai95@gmail.com', 'Tutorials Point')->subject
  5.             ('Laravel HTML Testing Mail');
  6.             $message->from('fadly@fadly.net','Virat Gandhi');
  7.         });
  8.         echo "HTML Email Sent. Check your inbox.";
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement