notifications.orchestrator
orchestrator
Deprecated compatibility imports for :mod:codex_platform.messaging.orchestrator.
Classes
DeliveryChannel
Bases: Protocol
Contract for a single delivery method.
Source code in src/codex_platform/messaging/orchestrator.py
Functions
send(to, subject, html_content, text_content, headers=None)
async
Attempt delivery. Return True on success, False on logical failure.
Source code in src/codex_platform/messaging/orchestrator.py
BaseDeliveryOrchestrator
Tries channels in order and stops on the first successful delivery.
Source code in src/codex_platform/messaging/orchestrator.py
Functions
deliver(payload)
async
Deliver a notification payload through available channels.