Skip to content

Commit

Permalink
feat(tem): add blocklisted flag (#2385)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan R. <[email protected]>
  • Loading branch information
scaleway-bot and jremy42 authored Jan 15, 2025
1 parent adcf20a commit 0782539
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/tem/v1alpha1/tem_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ const (
EmailFlagGreylisted = EmailFlag("greylisted")
// Refers to an email with a `send-before` tag to indicate the maximum time limit for the email to be sent.
EmailFlagSendBeforeExpiration = EmailFlag("send_before_expiration")
// Refers to an email blocked by a blocklist.
EmailFlagBlocklisted = EmailFlag("blocklisted")
)

func (enum EmailFlag) String() string {
Expand All @@ -312,6 +314,7 @@ func (enum EmailFlag) Values() []EmailFlag {
"mailbox_not_found",
"greylisted",
"send_before_expiration",
"blocklisted",
}
}

Expand Down

0 comments on commit 0782539

Please sign in to comment.