Convert Figma logo to code with AI

spatie logolaravel-newsletter

Manage Mailcoach and MailChimp newsletters in Laravel

1,597
233
1,597
1

Top Related Projects

Super-simple, minimum abstraction MailChimp API v3 wrapper, in PHP

The Official Twilio SendGrid PHP API Library

Quick Overview

Spatie's Laravel Newsletter package is a powerful and easy-to-use integration for managing newsletter subscriptions in Laravel applications. It provides a simple interface to interact with various newsletter services, with primary support for Mailchimp.

Pros

  • Seamless integration with Laravel and Mailchimp
  • Easy to use API for managing subscribers
  • Support for multiple mailing lists
  • Well-documented and actively maintained

Cons

  • Primarily focused on Mailchimp, limiting options for other newsletter services
  • Requires Mailchimp API key, which may not be suitable for all use cases
  • Limited advanced features compared to direct Mailchimp API usage

Code Examples

  1. Subscribing a user to a newsletter:
use Newsletter;

Newsletter::subscribe('user@example.com');
  1. Unsubscribing a user from a newsletter:
use Newsletter;

Newsletter::unsubscribe('user@example.com');
  1. Checking if a user is subscribed:
use Newsletter;

if (Newsletter::isSubscribed('user@example.com')) {
    // User is subscribed
}
  1. Subscribing a user with additional merge fields:
use Newsletter;

Newsletter::subscribe('user@example.com', [
    'FNAME' => 'John',
    'LNAME' => 'Doe',
]);

Getting Started

  1. Install the package via Composer:
composer require spatie/laravel-newsletter
  1. Publish the config file:
php artisan vendor:publish --provider="Spatie\Newsletter\NewsletterServiceProvider"
  1. Add your Mailchimp API key and list ID to your .env file:
MAILCHIMP_APIKEY=your-mailchimp-api-key
MAILCHIMP_LIST_ID=your-mailchimp-list-id
  1. Use the Newsletter facade in your code to manage subscriptions:
use Newsletter;

Newsletter::subscribe('user@example.com');

Competitor Comparisons

Super-simple, minimum abstraction MailChimp API v3 wrapper, in PHP

Pros of mailchimp-api

  • Lightweight and focused solely on Mailchimp API integration
  • Can be used in any PHP project, not limited to Laravel
  • More direct control over API requests and responses

Cons of mailchimp-api

  • Requires more manual setup and configuration
  • Less abstraction and convenience methods for common tasks
  • No built-in Laravel-specific features or integrations

Code Comparison

mailchimp-api:

$MailChimp = new \DrewM\MailChimp\MailChimp('your-api-key');
$result = $MailChimp->post("lists/$list_id/members", [
    'email_address' => 'user@example.com',
    'status'        => 'subscribed',
]);

laravel-newsletter:

Newsletter::subscribe('user@example.com', [
    'FNAME' => 'John',
    'LNAME' => 'Doe',
]);

Summary

mailchimp-api is a more versatile and lightweight option for integrating Mailchimp in PHP projects, offering greater flexibility and control. However, it requires more manual setup and lacks Laravel-specific features.

laravel-newsletter provides a more convenient and Laravel-tailored solution with higher-level abstractions, making it easier to implement common newsletter functionalities in Laravel applications.

Choose mailchimp-api for greater control and flexibility across PHP projects, or laravel-newsletter for seamless integration and simplified usage within Laravel ecosystems.

The Official Twilio SendGrid PHP API Library

Pros of sendgrid-php

  • Direct integration with SendGrid's API, offering access to a wider range of features
  • Not limited to Laravel, can be used in any PHP project
  • More frequent updates and active maintenance

Cons of sendgrid-php

  • Requires more setup and configuration compared to laravel-newsletter
  • Less abstraction, which may lead to more complex code for simple tasks
  • No built-in Laravel-specific features or integrations

Code Comparison

laravel-newsletter:

Newsletter::subscribe('user@example.com');
Newsletter::unsubscribe('user@example.com');
Newsletter::isSubscribed('user@example.com');

sendgrid-php:

$email = new \SendGrid\Mail\Mail();
$email->setFrom("sender@example.com", "Sender Name");
$email->setSubject("Subject");
$email->addTo("recipient@example.com", "Recipient Name");
$email->addContent("text/plain", "Hello, World!");
$sendgrid = new \SendGrid(getenv('SENDGRID_API_KEY'));
$response = $sendgrid->send($email);

The laravel-newsletter package provides a more abstracted and Laravel-specific approach, making it easier to perform common newsletter operations. On the other hand, sendgrid-php offers more flexibility and direct access to SendGrid's features, but requires more setup and code for basic operations.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Manage newsletters in Laravel

Latest Version MIT Licensed run-tests PHPStan Total Downloads

This package provides an easy way to integrate subscriptions to email lists of various email services.

Currently this package support:

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install this package via Composer using:

composer require spatie/laravel-newsletter

To publish the config file to config/newsletter.php run:

php artisan vendor:publish --tag="newsletter-config"

This will publish a file newsletter.php in your config directory with the following contents:

return [

    /*
     * The driver to use to interact with MailChimp API.
     * You may use "log" or "null" to prevent calling the
     * API directly from your environment.
     */
    'driver' => env('NEWSLETTER_DRIVER', Spatie\Newsletter\Drivers\MailcoachDriver::class),

    /**
     * These arguments will be given to the driver.
     */
    'driver_arguments' => [
        'api_key' => env('NEWSLETTER_API_KEY'),

        'endpoint' => env('NEWSLETTER_ENDPOINT'),
    ],

    /*
     * The list name to use when no list name is specified in a method.
     */
    'default_list_name' => 'subscribers',

    'lists' => [

        /*
         * This key is used to identify this list. It can be used
         * as the listName parameter provided in the various methods.
         *
         * You can set it to any string you want and you can add
         * as many lists as you want.
         */
        'subscribers' => [

            /*
             * When using the Mailcoach driver, this should be the Email list UUID
             * which is displayed in the Mailcoach UI
             *
             * When using the MailChimp driver, this should be a MailChimp list id.
             * http://kb.mailchimp.com/lists/managing-subscribers/find-your-list-id.
             */
            'id' => env('NEWSLETTER_LIST_ID'),
        ],
    ],
];

Using Mailcoach

To let this package work with Mailcoach, you need to install the Mailcoach SDK.

composer require spatie/mailcoach-sdk-php

Next, you must provide values for the API key, endpoint and list.subscribers.id in the config file. You'll find the API key and endpoint in the Mailcoach settings screen. The value for list.subscribers.id must be the UUID of an email list on Mailcoach. You'll find this value on the settings screen of an email list

Using MailChimp

To use MailChimp, install this extra package.

composer require drewm/mailchimp-api

The driver key of the newsletter config file must be set to Spatie\Newsletter\Drivers\MailChimpDriver::class.

Next, you must provide values for the API key and list.subscribers.id. You'll find these values in the MailChimp UI.

The endpoint config value must be set to null.

Usage

After you've installed the package and filled in the values in the config-file working with this package will be a breeze. All the following examples use the facade. Don't forget to import it at the top of your file.

use Spatie\Newsletter\Facades\Newsletter;

Subscribing, updating and unsubscribing

Subscribing an email address can be done like this:

use Newsletter;

Newsletter::subscribe('rincewind@discworld.com');

Let's unsubscribe someone:

Newsletter::unsubscribe('the.luggage@discworld.com');

For Mailcoach, you can pass extra attributes as the second argument:

Newsletter::subscribe('rincewind@discworld.com', ['first_name' => 'Rince', 'last_name' => 'Wind']);

For MailChimp you can pass merge variables as the second argument:

Newsletter::subscribe('rincewind@discworld.com', ['FNAME'=>'Rince', 'LNAME'=>'Wind']);

You can subscribe someone to a specific list by passing a list name:

Newsletter::subscribe('rincewind@discworld.com', listName: 'subscribers');

That third argument is the name of a list you configured in the config file.

You can also subscribe and/or update someone. The person will be subscribed or updated if he/she is already subscribed:

Newsletter::subscribeOrUpdate('rincewind@discworld.com', ['first_name' => 'Rince', 'last_name' => 'Wind']);

For MailChimp, You can subscribe someone to one or more specific group(s)/interest(s) by using the fourth argument:

Newsletter::subscribeOrUpdate(
   'rincewind@dscworld.com', 
   ['FNAME'=>'Rince','LNAME'=>'Wind'], 
   'subscribers', 
   ['interests'=>['interestId'=>true, 'interestId'=>true]],
);

Simply add false if you want to remove someone from a group/interest.

Here's how to unsubscribe someone from a specific list:

Newsletter::unsubscribe('rincewind@discworld.com', 'subscribers');

Deleting subscribers

Deleting is not the same as unsubscribing. Unlike unsubscribing, deleting a member will result in the loss of all history (add/opt-in/edits) as well as removing them from the list. In most cases, you want to use unsubscribe instead of delete.

Here's how to perform a delete:

Newsletter::delete('rincewind@discworld.com');

Getting subscriber info

You can get information on a subscriber by using the getMember function:

Newsletter::getMember('lord.vetinari@discworld.com');

For MailCoach, this will return an instance of Spatie\Mailcoach\Resources|Subscriber For MailChimp, this will return an array with information on the subscriber.

If there's no one subscribed with that e-mail address the function will return false

There's also a convenient method to check if someone is already subscribed:

Newsletter::hasMember('nanny.ogg@discworld.com'); //returns a boolean

In addition to this, you can also check if a user is subscribed to your list:

Newsletter::isSubscribed('lord.vetinari@discworld.com'); //returns a boolean

Need something else?

If you need more functionality you get an instance of the underlying API with

$api = Newsletter::getApi();

If you're having trouble getting the MailChimp integration, you can see the last error with:

Newsletter::getApi()->getLastError();

Testing

Run the tests with:

vendor/bin/pest

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security-related issues, please email security@spatie.be instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.