noerd/marketing

Marketing module for noerd platform — central email sending and communications log

Maintainers

Package info

github.com/noerd-dev/marketing

pkg:composer/noerd/marketing

Statistics

Installs: 42

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.1 2026-05-28 20:15 UTC

This package is auto-updated.

Last update: 2026-05-28 20:16:01 UTC


README

Central email sending and communications log for the noerd platform.

Purpose

  • Single entry point for sending application emails across all modules
  • Persistent log of every email in the communications table
  • Replaces the legacy mail_logs table (data migrated automatically)

Usage

use Noerd\Marketing\Services\Communicator;

app(Communicator::class)->send(
    mailable: new MyMailable($data),
    to: $customer->email,
    customer: $customer,
);

Installation

  1. composer require noerd/marketing
  2. php artisan migrate
  3. php artisan noerd:install-marketing