Tony Grosinger 3502574650 Add deliverability webhook and store results in cache
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.
2023-05-05 15:32:08 +00:00

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"
)