@prasadg Lumen implemented mail same as Laravel. Use the laravel docs and follow those for Mail.
Jan 14, 2020
6
Level 1
How to send email from Lumen?
I want to send email using Lumen, I have followed the steps mentioned in document https://lumen.laravel.com/docs/6.x/mail
but I didnt get any example of how to send email? Can anyone tell me how to send email from it?
Level 67
@prasadg ...
Mail::to($request->user())
->subject('Hi there')
->cc($moreUsers)
->bcc($evenMoreUsers)
->send(new OrderShipped($order));
The body will be in the OrderShipped mailable. You have to create this with php artisan make:mail OrderShipped
2 likes
Please or to participate in this conversation.