Central email sending and communications log for the noerd platform.
- Single entry point for sending application emails across all modules
- Persistent log of every email in the
communicationstable - Replaces the legacy
mail_logstable (data migrated automatically)
use Noerd\Marketing\Services\Communicator;
app(Communicator::class)->send(
mailable: new MyMailable($data),
to: $customer->email,
customer: $customer,
);composer require noerd/marketingphp artisan migratephp artisan noerd:install-marketing