all repos

onasty @ e2c4fd283ecd1a92895e34c43cf02a3a94d2b194

a one-time notes service

onasty/internal/mailer/mailer.go(view raw)

1
2
3
4
5
6
7
package mailer

import "context"

type Mailer interface {
	Send(ctx context.Context, to, subject, content string) error
}