package smtp import ( "context" "maunium.net/go/mautrix/id" "gitlab.com/etke.cc/postmoogle/utils" ) // Client interface to send emails type Client interface { GetMapping(context.Context, string) (id.RoomID, bool) Send(ctx context.Context, from, mailbox, subject, text, html string, files []*utils.File) error }