11 lines
295 B
Go
11 lines
295 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package clients
|
|
|
|
// Emailer wrapper around the email.
|
|
type Emailer interface {
|
|
// SendPasswordReset sends an email to the user with a link to reset the password.
|
|
SendPasswordReset(To []string, host, user, token string) error
|
|
}
|