prasadg's avatar

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?

0 likes
6 replies
fylzero's avatar

@prasadg Lumen implemented mail same as Laravel. Use the laravel docs and follow those for Mail.

1 like
fylzero's avatar
fylzero
Best Answer
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
fylzero's avatar

@prasadg Definitely let me know if that worked. Feel free to mark best answer here if this helped. Thanks!

2 likes

Please or to participate in this conversation.