Step 1: Configure Gmail in the .env
File
First, you need to configure your Gmail settings in Laravel’s .env
file. This allows Laravel to send emails using Gmail’s SMTP server. Make sure you’ve enabled 2-Step Verification on your Gmail account and generated an application-specific password.
Edit the .env
file and set the following values:
Once the .env
file is updated, execute the following commands to clear the configuration cache:
Step 2: Create a Controller to Handle Sending Emails
Next, create a controller that will send the emails. Run this Artisan command:
Now, open the app/Http/Controllers/MailController.php
file and implement the email-sending functionality as shown below:
Step 3: Create the Email View
Create the email template that will be sent in the email. This template will use the Blade templating engine.
Create a file named resources/views/mail.blade.php
:
Step 4: Define Routes to Trigger the Emails
Now, define routes to send the different types of emails. Open routes/web.php
and add the following routes:
Step 5: Test the Email Functionality
Now, you can test the email functionality by visiting the following URLs:
-
For the basic email:
-
For the HTML email:
-
For the email with attachments:
Step 6: Check Your Inbox
After visiting any of the above URLs, you should receive an email in your inbox:
-
The basic email will show plain text content.
-
The HTML email will show a more styled format.
-
The attachment email will contain the files you attached.
Summary of Common Mail Methods
Here’s a quick summary of the common methods you can use to manipulate your email content:
-
$message->subject('Your Subject');
– Set the subject of the email. -
$message->from('your-email@example.com', 'Your Name');
– Set the sender’s email and name. -
$message->to('recipient@example.com', 'Recipient Name');
– Set the recipient's email and name. -
$message->cc('cc-email@example.com');
– Add a CC recipient. -
$message->bcc('bcc-email@example.com');
– Add a BCC recipient. -
$message->attach('path/to/file');
– Attach a file to the email. -
$message->embed('path/to/image');
– Embed an image in the email.
You can also customize the email's reply-to address, sender's address, and other parameters as needed.