do not convert plaintext as html

This commit is contained in:
Aine
2022-08-23 18:11:38 +03:00
parent 24686ef501
commit 0178c3cff3
3 changed files with 8 additions and 8 deletions

View File

@@ -10,5 +10,5 @@ import (
// Client interface to send emails
type Client interface {
GetMapping(context.Context, string) (id.RoomID, bool)
Send(ctx context.Context, from, mailbox, subject, body string, files []*utils.File) error
Send(ctx context.Context, from, mailbox, subject, text, html string, files []*utils.File) error
}