all repos

onasty @ cc720f38bad43254ad76d5e30d8405b965b58ccf

a one-time notes service

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

Smirnov Oleksandr Smirnov Oleksandr
ss2316544@gmail.com
feat: send emails on sign-up (#6)..., 1 year ago
1
package mailer
2
3
import "context"
4
5
type Mailer interface {
6
	Send(ctx context.Context, to, subject, content string) error
7
}