7 lines
380 B
Go
7 lines
380 B
Go
// Package inviteemail provides domain types and constants for invitation emails
|
|
// sent to non-registered users when someone wants to share a collection with them.
|
|
package inviteemail
|
|
|
|
// DefaultMaxInviteEmailsPerDay is the fallback limit if the environment variable is not set.
|
|
// This conservative limit protects email domain reputation.
|
|
const DefaultMaxInviteEmailsPerDay = 3
|