all repos

onasty @ bcf505635318b83f2b5338c2274ea658a2a23758

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
}