Deliverability report is accessible in an API handler which will allow the login page to tell the user when the email should be in their inbox.
12 lines
409 B
Go
12 lines
409 B
Go
package constants
|
|
|
|
const (
|
|
// CachedMarkdownGroup is the cache group for stored markdown pages.
|
|
CachedMarkdownGroup = "markdown"
|
|
|
|
// CachedDeliverabilityGroup is the cache group for storing deliverability
|
|
// reports from the email provider. This is used to provide instant feedback
|
|
// to users whether their signup email was successfully delivered or not.
|
|
CachedDeliverabilityGroup = "deliverability"
|
|
)
|