What is the use of Laravel - Sending Email ?
Answer / surbhi
Laravel uses free feature-rich library SwiftMailer to send emails.
Using the library function, we can easily send emails without too many hassles.
The e-mail templates are loaded in the same way as views, which means you can use the Blade syntax and inject data into your templates.
Syntax : void send(string|array $view, array $data, Closure|string $callback)
The default type is HTML. If you want to send plain text mail then use the following syntax.
Syntax : Mail::send([‘text’=>’text.view’], $data, $callback);
| Is This Answer Correct ? | 0 Yes | 0 No |
What is x-xsrf-token?
How to retrive all requested data in laravel?
How to start, stop mysql on valet?
How will you explain events in laravel?
What are middleware groups?
Which js framework is best with laravel?
How to create route name in laravel 5?
How can we use middleware in laravel?
How does laravel handle assets?
What is route model binding in laravel?
Define composer.
How to remove a complied class file?