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

13 lines
260 B
Go

package notification
import (
"github.com/authelia/authelia/v4/internal/model"
)
// Notifier interface for sending the identity verification link.
type Notifier interface {
model.StartupCheck
Send(recipient, subject, body, htmlBody string) (err error)
}