Skip to content

Commit

Permalink
Changed the email details for welcome emails.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwoberts committed Oct 4, 2024
1 parent 7deaca6 commit 8d3bb29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/jobs/trial_reminder_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ func (e TrialReminderJobHandler) Run(ctx Context) error {
if len(to) > 0 {
bus.Publish(ctx, &cmd.SendMail{
From: dto.Recipient{
Name: "Guilherme from Fider",
Address: "goenning@fider.io",
Name: "Fider",
Address: "contact@fider.io",
},
To: to,
TemplateName: e.TemplateName,
Expand Down
4 changes: 2 additions & 2 deletions app/tasks/signup.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func SendWelcomeEmail(name, email, baseURL string) worker.Task {

bus.Publish(c, &cmd.SendMail{
From: dto.Recipient{
Name: "Guilherme from Fider",
Address: "goenning@fider.io",
Name: "Fider",
Address: "contact@fider.io",
},
To: []dto.Recipient{to},
TemplateName: "welcome_email",
Expand Down

0 comments on commit 8d3bb29

Please sign in to comment.