We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd0732 commit 4d0a1f1Copy full SHA for 4d0a1f1
mailer/ses.go
@@ -24,8 +24,8 @@ type SESMailer struct {
24
var _ Mailer = &SESMailer{}
25
26
type SESMailerConfig struct {
27
- Sender string `envconfig:"TIDEPOOL_EMAIL_SENDER",validate:"email"`
28
- Region string `envconfig:"TIDEPOOL_SES_REGION",validate:"required"`
+ Sender string `envconfig:"TIDEPOOL_EMAIL_SENDER" default:"noreply@tidepool.org" validate:"email"`
+ Region string `envconfig:"TIDEPOOL_SES_REGION" default:"us-west-2" validate:"required"`
29
}
30
31
type SESMailerParams struct {
0 commit comments