bisual/bisualmail

Editor de mails y gestor de newsletter para backoffice

v1.0.10 2024-02-01 14:52 UTC

This package is auto-updated.

Last update: 2024-04-30 15:27:48 UTC


README

Instalación

composer require bisual/bisualmail

php artisan vendor:publish --provider="bisual\bisualmail\bisualmailServiceProvider"

php artisan migrate 

Añadir comando al scheduler de laravel en App\Console\Kernel.php

protected function schedule(Schedule $schedule)
{

    ...
    $schedule->command('bisualmail:send-newsletter')->everyMinute();
    ...
}