File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff 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
147153func (enum EmailFlag ) String () string {
You can’t perform that action at this time.
0 commit comments