mail

Tag

1 posts found

7 Apr 2015
0.56K
No Comments

This is default simple documentation of #laravel to send mail but problems is that this is static mail passed in parameter to(‘foo@sdtuts.com’) [php] Mail::send(’emailtemplate_view’, [‘data’ => ‘for_emailtemplate_view’], function($message){ $message->to(‘foo@sdtuts.com’, ‘SDTuts’)->subject(‘Welcome!’); }); [/php] We also need to pass the dynamic email, for example we used it for user registration steps to

Post in