mirror of
https://github.com/btouchard/ackify.git
synced 2025-12-30 09:29:41 -06:00
Add configurable SMTP service for sending signature reminder emails. Features: - Configurable via ACKIFY_MAIL_* environment variables - Multilingual templates (en/fr) with HTML + text versions - Template rendering with automatic variable injection - Graceful degradation when SMTP not configured - TLS/STARTTLS support with configurable timeout - MailHog integration for local testing
29 lines
907 B
Modula-2
29 lines
907 B
Modula-2
module github.com/btouchard/ackify-ce
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/go-mail/mail/v2 v2.3.0
|
|
github.com/golang-migrate/migrate/v4 v4.19.0
|
|
github.com/gorilla/securecookie v1.1.2
|
|
github.com/gorilla/sessions v1.4.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/oauth2 v0.31.0
|
|
golang.org/x/text v0.29.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.13.1 // indirect
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/mail.v2 v2.3.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|