ItSolutionStuff.com

How to set CC And BCC Email Address In Laravel Mail?

By Hardik Savani • April 16, 2024
Laravel

Hey Folks,

This example is focused on how to add cc in laravel mail. if you want to see an example of how to add bcc in laravel mail then you are in the right place. you can understand a concept of how to add more cc in email. Here you will learn laravel mail send multiple cc. Here, Create a basic example of laravel mail send multiple bcc.

You can use these tips with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.

If you want to add cc or bcc recipient emails in laravel mail then it's very easy. Laravel Mail provides cc() and bcc() method to send more recipient emails for sending emails. so let's see the following solution.

Send Email Code:

You can follow the below tutorial to sending email from laravel. Then the below code i will show you how to send cc and bcc emails.

Follow Mail Sending Tutorial: Laravel Mail | Laravel Send Email Tutorial

.

Send Email with cc and bcc:

You need to update the following controller code:

app/Http/Controllers/MailController.php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Mail;

use App\Mail\DemoMail;

class MailController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index()

{

$mailData = [

'title' => 'Mail from ItSolutionStuff.com',

'body' => 'This is for testing email using smtp.'

];

$ccEmails = ["demo@gmail.com", "demo2@gmail.com"];

$bccEmails = ["demo3@gmail.com", "demo4@gmail.com"];

Mail::to('your_email@gmail.com')

->cc($ccEmails)

->bcc($bccEmails)

->send(new DemoMail($mailData));

dd("Email is sent successfully.");

}

}

Now, you can check and you will find the following result:

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 9 Markdown | Laravel 9 Send Email using Markdown Mailables

Read Now →

Laravel 9 Mail | Laravel 9 Send Email Tutorial

Read Now →

Laravel - How to Set Subject in Mail?

Read Now →

How to Change From Name in Laravel Mail?

Read Now →

How to Send Mail using Sendinblue in Laravel?

Read Now →

How to Send Mail using Mailjet in Laravel?

Read Now →

Laravel Send Mail using Mailgun Example

Read Now →

How to Send Mail using Queue in Laravel?

Read Now →

Laravel Mailchimp API Integration Example

Read Now →

How to Send Mail using Sendgrid in Laravel?

Read Now →

How to Send Mail in PHP Laravel?

Read Now →

Laravel Mailgun Setup Example

Read Now →

How to Send Mail using Gmail SMTP in Laravel?

Read Now →