all repos

onasty @ 5bfc9430f32d175e87ae2f4e3e6e61f4d49735c3

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
}