8 lines
126 B
Go
8 lines
126 B
Go
package transport
|
|
|
|
import "github.com/jordan-wright/email"
|
|
|
|
type MailTransporter interface {
|
|
Send(mail *email.Email) error
|
|
}
|