Skip to content

Commit 45ad1e0

Browse files
authored
feat(tem): add more email flags (#1827)
1 parent 7f8e112 commit 45ad1e0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

api/tem/v1alpha1/tem_sdk.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,14 @@ const (
140140
EmailFlagHardBounce = EmailFlag("hard_bounce")
141141
// Refers to an email considered as spam
142142
EmailFlagSpam = EmailFlag("spam")
143-
// Refers to an email not delivered because the recipient mailbox is full
143+
// Refers to an undelivered email because the recipient mailbox is full
144144
EmailFlagMailboxFull = EmailFlag("mailbox_full")
145+
// Refers to an undelivered email because the recipient mailbox does not exist
146+
EmailFlagMailboxNotFound = EmailFlag("mailbox_not_found")
147+
// Refers to an email slightly delayed by the recipient to ensure that Scaleway is not sending spam
148+
EmailFlagGreylisted = EmailFlag("greylisted")
149+
// Refers to an email with a `send-before` tag to indicate the maximum time limit for the email to be sent
150+
EmailFlagSendBeforeExpiration = EmailFlag("send_before_expiration")
145151
)
146152

147153
func (enum EmailFlag) String() string {

0 commit comments

Comments
 (0)