I use the default Laravel Mail class to send emails.
I try to add bcc for myself, but when I add bcc, the email is not sent at all.
Here is my code:
Mail::send( 'emails.order.order', array( 'dateTime' => $dateTime, 'items' => $items ), function($message) use ($toEmail, $toName) { $message->from('my@email.com', 'My Company'); $message->to($toEmail, $toName); $message->bcc('mybcc@email.com'); $message->subject('New order'); } );
php email laravel laravel-4
Ivan Dokov
source share