Skip to content

Commit

Permalink
Merge pull request #15 from daystram/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
daystram authored Jan 10, 2021
2 parents 790ea35 + adcd0e1 commit b858648
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ratify-be/handlers/mailer.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ func (m *module) SendVerificationEmail(user models.User) (err error) {
}
email := hermes.Email{
Body: hermes.Body{
Greeting: "Hi",
Name: user.Username,
Greeting: "Hi",
Signature: "Cheers!",
Name: user.Username,
Intros: []string{
"Welcome to Ratify!",
},
Expand All @@ -34,7 +35,7 @@ func (m *module) SendVerificationEmail(user models.User) (err error) {
Button: hermes.Button{
Color: "#00c3c3",
Text: "Confirm Email",
Link: fmt.Sprintf("https://ratify.daystram.com/confirm?token=%s", token),
Link: fmt.Sprintf("https://ratify.daystram.com/verify?token=%s", token),
},
},
},
Expand Down

0 comments on commit b858648

Please sign in to comment.