15 lines
297 B
Go
15 lines
297 B
Go
package notification
|
|
|
|
import (
|
|
"net/mail"
|
|
|
|
"github.com/authelia/authelia/v4/internal/model"
|
|
)
|
|
|
|
// Notifier interface for sending the identity verification link.
|
|
type Notifier interface {
|
|
model.StartupCheck
|
|
|
|
Send(recipient mail.Address, subject string, bodyText, bodyHTML []byte) (err error)
|
|
}
|