Allow separate mailer account and From address

This commit is contained in:
Asaf Gartner 2022-09-18 22:23:36 +03:00
parent b27ddd1e7f
commit ca663d874b
3 changed files with 10 additions and 8 deletions

View File

@ -35,8 +35,9 @@ var Config = HMNConfig{
ServerAddress: "smtp.example.com", ServerAddress: "smtp.example.com",
ServerPort: 587, ServerPort: 587,
FromAddress: "noreply@example.com", FromAddress: "noreply@example.com",
FromAddressPassword: "",
FromName: "Handmade Network Team", FromName: "Handmade Network Team",
MailerUsername: "actualuser@example.com",
MailerPassword: "",
ForceToAddress: "localdev@example.com", // NOTE(asaf): If this is not empty, all emails will be sent to this address. ForceToAddress: "localdev@example.com", // NOTE(asaf): If this is not empty, all emails will be sent to this address.
}, },

View File

@ -60,12 +60,13 @@ type DigitalOceanConfig struct {
} }
type EmailConfig struct { type EmailConfig struct {
ServerAddress string ServerAddress string
ServerPort int ServerPort int
FromAddress string FromAddress string
FromAddressPassword string MailerUsername string
FromName string MailerPassword string
ForceToAddress string FromName string
ForceToAddress string
} }
type DiscordConfig struct { type DiscordConfig struct {

View File

@ -124,7 +124,7 @@ func sendMail(toAddress, toName, subject, contentHtml string) error {
) )
return smtp.SendMail( return smtp.SendMail(
fmt.Sprintf("%s:%d", config.Config.Email.ServerAddress, config.Config.Email.ServerPort), fmt.Sprintf("%s:%d", config.Config.Email.ServerAddress, config.Config.Email.ServerPort),
smtp.PlainAuth("", config.Config.Email.FromAddress, config.Config.Email.FromAddressPassword, config.Config.Email.ServerAddress), smtp.PlainAuth("", config.Config.Email.MailerUsername, config.Config.Email.MailerPassword, config.Config.Email.ServerAddress),
config.Config.Email.FromAddress, config.Config.Email.FromAddress,
[]string{toAddress}, []string{toAddress},
contents, contents,