15 lines
319 B
Go
15 lines
319 B
Go
package smtp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitlab.com/etke.cc/postmoogle/utils"
|
|
"maunium.net/go/mautrix/id"
|
|
)
|
|
|
|
// 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
|
|
}
|