Skip to content

notification.sending

View Markdown

A notification is about to be sent.

Source Notifications Category Notifications Fields 6 honeybadger-laravel

Fields

6
FieldTypeDescription
event_typestringAllowed value: notification.sending.
notificationstringNotification class name.
channelstringChannel the notification is sent through, e.g. "mail", "slack".
notifiablestringNotifiable class name (the recipient model).
queuestring | nullQueue name if the notification was queued.
requestIdstringCorrelation ID for the request, set by the AssignRequestId middleware via Laravel's shared log context. The value comes from the Request-Id or X-Request-Id request header, or is a generated UUID. Present only when that middleware is enabled.

Example

{
"event_type": "notification.sending",
"notification": "App\\Notifications\\InvoicePaid",
"channel": "mail",
"notifiable": "App\\Models\\User",
"queue": "default",
"requestId": "f3b2c1d0-4e5a-4b6c-8d7e-9f0a1b2c3d4e"
}