MailSlurpAPI.Model.WebhookBouncePayload (mailslurp v15.17.22)

BOUNCE webhook payload. Sent to your webhook url endpoint via HTTP POST when an email bounced or was rejected by a recipient. Save the recipients to a ban list on your server and avoid emailing them again. It is recommended you also listen to the BOUNCE_RECIPIENT payload.

Summary

Types

@type t() :: %MailSlurpAPI.Model.WebhookBouncePayload{
  bounceId: String.t(),
  bounceRecipients: [String.t()] | nil,
  eventName: String.t(),
  messageId: String.t(),
  sender: String.t(),
  sentToRecipients: [String.t()] | nil,
  webhookId: String.t(),
  webhookName: String.t() | nil
}