mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-28 13:48:49 +08:00
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
|
||
|
}
|