Sending a daily email with Laravel and Campaign Monitor

Published on by

Sending a daily email with Laravel and Campaign Monitor image

Here on Laravel News, we offer multiple ways of staying up to date with new content. Everything from auto-sharing to all the social media channels, a read-only Telegram channel, a weekly newsletter and last March we started offering a daily email digest.

To send the daily email we utilize the Laravel scheduler and Campaign Monitor so it’s completely automated. In this tutorial let’s look at how its all setup and how you can easily add this to your site to start sending out automated emails.

Installation

Before we jump in you will need to install the Campaign Monitor SDK and thanks to Composer its simple. Run the composer require command:

composer require campaignmonitor/createsend-php

Next, add the following three items to your .env file:

CAMPAIGN_MONITOR_API_KEY=
CAMPAIGN_MONITOR_CLIENT_ID=
CAMPAIGN_MONITOR_DAILY_LIST_ID=

You can find the first two values by visiting admin/account/apikeys in your Campaign Monitor account. For the daily list ID, visit the “Lists & Subscribers” and either create a new list or edit an existing. As long as you are an admin on the account you’ll find the “API Subscriber List ID” here.

Take all three of those and save them in the .env file and now we are ready to create the command to send the email.

Creating the Console Command

Now that we have the required pieces in place its time to create a console command that we can hook into the Laravel Scheduler.

php artisan make:command SendDailyEmail

That Artisan command will create the scaffolding of the class and you should open the new file and fill out the signature and description properties:

protected $signature = 'ln:daily';
protected $description = 'Send the daily email';

Next, inside the handle method is where we are going to put the logic. Because it’s a daily email there will be some days where we don’t post a new article. For example holidays, and weekends. So those should be avoided.

To account for this we can do a simple “if” check to make sure at least one post was published in the past 24 hours. Here is how I set it up to check the last email sent:

public function handle()
{
$posts = Post::active()->where('publishes_at', '>', Carbon::parse('yesterday 3pm'))->get();
if (count($posts) > 0) {
return $this->email($posts);
}
}

Now the final portion of this class if the “email()” method that is referenced above. Here is the full code for it:

protected function email($posts)
{
$auth = ['api_key' => config('services.campaign-monitor.key')];
$cm = new CS_REST_Campaigns(null, $auth);
 
$draft = $cm->create(config('services.campaign-monitor.client_id'), [
'Subject' => $posts->first()->title,
'Name' => 'Daily Email ('.date("Y-m-d").')',
'FromName' => 'Laravel News',
'FromEmail' => 'hello@example.com',
'ReplyTo' => 'hello@example.com',
'HtmlUrl' => 'https://site.com/dailyTemplate',
'ListIDs' => [config('services.campaign-monitor.daily_id')],
]);
 
$cm->set_campaign_id($draft->response);
 
$result = $cm->send(array(
'ConfirmationEmail' => 'hello@example.com',
'SendDate' => 'immediately'
));
}

This is where almost all of the magic happens and this is a two-step process. First, we set up a draft campaign using $cm->create and pass in an array of all the required settings. The one unique item here is the HtmlUrl and it is the source of the email.

Next, we set the campaign ID and then we send it immediately through the $cm->send method.

Creating the HTML Email Source

In that last section, we told Campaign Monitor to use a web route as the HtmlUrl and this allows us to create the template with Laravel Blade and have it routable so we can take a look at it before its sent off.

To create this it’s just a standard route, controller, and view, but the view will need to use HTML tables since it will be an email. I used Zurb Foundation as a base, but there are lots of other options available and you can see what others are recommending by looking at the responses to this Tweet.

Scheduling the Command

The final step is to register our Command in the app/Console/Kernel.php file and then set it on the schedule we want.

//...
 
protected $commands = [
SendDailyEmail::class,
];
 
//...
 
protected function schedule(Schedule $schedule)
{
$schedule->command('ln:daily')->daily()->at('15:00');
}

As long as you have your cron setup to call the scheduler it should now all be happening automatically.

Want to view the end results? Subscribe to the daily Laravel News digest and you’ll see it right in your inbox.

Eric L. Barnes photo

Eric is the creator of Laravel News and has been covering Laravel since 2012.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Paragraph

Manage your Laravel app as if it was a CMS – edit any text on any page or in any email without touching Blade or language files.

Visit Paragraph
Laravel Forge logo

Laravel Forge

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Forge
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $7500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $2500/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
LoadForge logo

LoadForge

Easy, affordable load testing and stress tests for websites, APIs and databases.

LoadForge
Paragraph logo

Paragraph

Manage your Laravel app as if it was a CMS – edit any text on any page or in any email without touching Blade or language files.

Paragraph
Lucky Media logo

Lucky Media

Bespoke software solutions built for your business. We ♥ Laravel

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
DocuWriter.ai logo

DocuWriter.ai

Save hours of manually writing Code Documentation, Comments & DocBlocks, Test suites and Refactoring.

DocuWriter.ai
Rector logo

Rector

Your partner for seamless Laravel upgrades, cutting costs, and accelerating innovation for successful companies

Rector

The latest

View all →
Generate Code Coverage in Laravel With PCOV image

Generate Code Coverage in Laravel With PCOV

Read article
Non-backed Enums in Database Queries and a withSchedule() bootstrap method in Laravel 11.1 image

Non-backed Enums in Database Queries and a withSchedule() bootstrap method in Laravel 11.1

Read article
Laravel Pint --bail Flag image

Laravel Pint --bail Flag

Read article
Laravel Herd for Windows is now released! image

Laravel Herd for Windows is now released!

Read article
The Laravel Worldwide Meetup is Today image

The Laravel Worldwide Meetup is Today

Read article
Cache Routes with Cloudflare in Laravel image

Cache Routes with Cloudflare in Laravel

Read article