Skip to content

Commit 0782539

Browse files
feat(tem): add blocklisted flag (#2385)
Co-authored-by: Jonathan R. <[email protected]>
1 parent adcf20a commit 0782539

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: api/tem/v1alpha1/tem_sdk.go

+3
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ const (
292292
EmailFlagGreylisted = EmailFlag("greylisted")
293293
// Refers to an email with a `send-before` tag to indicate the maximum time limit for the email to be sent.
294294
EmailFlagSendBeforeExpiration = EmailFlag("send_before_expiration")
295+
// Refers to an email blocked by a blocklist.
296+
EmailFlagBlocklisted = EmailFlag("blocklisted")
295297
)
296298

297299
func (enum EmailFlag) String() string {
@@ -312,6 +314,7 @@ func (enum EmailFlag) Values() []EmailFlag {
312314
"mailbox_not_found",
313315
"greylisted",
314316
"send_before_expiration",
317+
"blocklisted",
315318
}
316319
}
317320

0 commit comments

Comments
 (0)