1
0
forked from wrenn/wrenn

Move email types to pkg/email for cloud repo access

Extracts Mailer interface, EmailData, and Button to pkg/email/types.go
so the cloud repo can use them via ServerContext. internal/email re-exports
the types as aliases so existing callers are unchanged. Also fixes
pre-existing lint errors (unchecked rollback and deadline calls).
This commit is contained in:
2026-04-17 16:36:54 +06:00
parent 605ad666a0
commit 5fa3529df9
6 changed files with 38 additions and 25 deletions

View File

@ -20,6 +20,8 @@ import (
"net/url"
"strconv"
"strings"
emailtypes "git.omukk.dev/wrenn/wrenn/pkg/email"
)
// Config holds SMTP connection credentials. All fields except Host are
@ -32,26 +34,10 @@ type Config struct {
FromEmail string // envelope sender address
}
// Mailer sends transactional emails.
type Mailer interface {
Send(ctx context.Context, to string, subject string, data EmailData) error
}
// EmailData is the generic payload for all transactional emails.
// Templates conditionally render each field based on presence.
type EmailData struct {
RecipientName string // optional — used after "Hello"
Message string // main body (plain text; HTML template wraps it)
Button *Button // optional CTA button
Closing string // optional closing/footer message
}
// Button represents a call-to-action link rendered as a button in HTML
// and as a plain URL in the text variant.
type Button struct {
Text string // button label
URL string // target URL
}
// Re-export public types so existing internal/ callers don't need to change imports.
type Mailer = emailtypes.Mailer
type EmailData = emailtypes.EmailData
type Button = emailtypes.Button
// New constructs a Mailer. If cfg.Host is empty, returns a no-op mailer
// that logs at debug level and discards. Panics if templates fail to parse