noerd/communication

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

Maintainers

Package info

github.com/noerd-dev/communication

pkg:composer/noerd/communication

Transparency log

Statistics

Installs: 21

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.5 2026-07-10 17:33 UTC

This package is not auto-updated.

Last update: 2026-07-12 13:52:51 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\Communication\Services\Communicator;

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

Installation

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