webnuvola/laravel-mjml

Effortlessly craft responsive email templates using MJML within Laravel Mailables
7,021 1
Install
composer require webnuvola/laravel-mjml
Latest Version:v1.0.1
PHP:^8.1
License:MIT
Last Updated:Mar 7, 2024
Links: GitHub  ·  Packagist
Maintainer: fab120

Laravel MJML

Latest Version on Packagist GitHub Tests Action Status Total Downloads

Effortlessly craft responsive email templates using MJML within Laravel Mailables.

To use this package, follow these steps after generating a new Mailable.
Instead of extending Illuminate\Mail\Mailable, extend Webnuvola\Laravel\Mjml\Mailable.
In the Mailable class, define the build method.
You can now use the mjml method for defining a view or mjmlContent to directly pass the MJML template.

Here's an example:

use Webnuvola\Laravel\Mjml\Mailable;

class TestMail extends Mailable
{
    /**
     * Build the message.
     */
    public function build(): void
    {
        $this->mjml('emails.orders.shipped', [
            'order' => $order,
        ]);
    }
}

Installation

You can install the package via composer:

composer require webnuvola/laravel-mjml

In your project, or on your server, you must have the JavaScript package mjml installed.

npm install mjml

Make sure you have installed Node 16 or higher.
This package uses spatie/mjml-php under the hood.

Testing

composer test

Changelog

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

Credits

Inspired by asahasrabuddhe/laravel-mjml package.

License

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

Related Packages

harlan-zw/laravel-modern-mail

Extends the Laravel mail experience.

5,301 3
sun/sunmailer

SunMailer helps you to send email easily.

454 3
coconutcraig/laravel-postmark

Laravel package for sending mail via the Postmark API

3,556,147 218
ritey/mailgun

A laravel 5 wrapper for sending mail via the Mailgun API in Laravel style

25 1
larablocks/pigeon

A more flexible email message builder for Laravel 5 including chained methods, r...

3,706 14