Mainflux.mainflux/users/emailer.go

10 lines
202 B
Go

// Copyright (c) Mainflux
// SPDX-License-Identifier: Apache-2.0
package users
// Emailer wrapper around the email
type Emailer interface {
SendPasswordReset(To []string, host, token string) error
}