1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/internal/notification/notifier.go

8 lines
201 B
Go
Raw Normal View History

package notification
// Notifier interface for sending the identity verification link.
type Notifier interface {
Send(recipient, subject, body, htmlBody string) error
StartupCheck() (bool, error)
}