We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adcf20a commit 0782539Copy full SHA for 0782539
api/tem/v1alpha1/tem_sdk.go
@@ -292,6 +292,8 @@ const (
292
EmailFlagGreylisted = EmailFlag("greylisted")
293
// Refers to an email with a `send-before` tag to indicate the maximum time limit for the email to be sent.
294
EmailFlagSendBeforeExpiration = EmailFlag("send_before_expiration")
295
+ // Refers to an email blocked by a blocklist.
296
+ EmailFlagBlocklisted = EmailFlag("blocklisted")
297
)
298
299
func (enum EmailFlag) String() string {
@@ -312,6 +314,7 @@ func (enum EmailFlag) Values() []EmailFlag {
312
314
"mailbox_not_found",
313
315
"greylisted",
316
"send_before_expiration",
317
+ "blocklisted",
318
}
319
320
0 commit comments