bugfixes; email parsing; send emails into matrix rooms; e2e tests

This commit is contained in:
Aine
2022-08-22 12:28:29 +03:00
parent c746c91dbb
commit e6d5e81efe
16 changed files with 428 additions and 24 deletions

View File

@@ -9,5 +9,5 @@ import (
// Client interface to send emails
type Client interface {
GetMappings(context.Context) (map[string]id.RoomID, error)
Send(from, to, subject, body string) error
Send(from, mailbox, subject, body string) error
}