diff --git a/services/email.go b/services/email.go index cfc6f88..29ebc77 100644 --- a/services/email.go +++ b/services/email.go @@ -57,8 +57,8 @@ func SendVerificationMail(userId uint, email, role string) (error) { -

Verifying it's you,

-

Thanks for signing up! get started with cms:

+

Verifying it's you.

+

Thanks for signing up! get started with cms.

Get Started!

@@ -66,7 +66,7 @@ func SendVerificationMail(userId uint, email, role string) (error) { `, verificationURL) - err = SendMail(email, "Verification of cms account", mail) + err = SendMail(email, "Verification of your cms account", mail) if err != nil { return err } @@ -103,7 +103,7 @@ func SendPasswordResetMail(userID uint, email, role string) error { `, resetURL) - err = SendMail(email, "Reset cms account password", mail) + err = SendMail(email, "Reset your cms account password", mail) if err != nil { return err }