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) {
-Thanks for signing up! get started with cms:
+Thanks for signing up! get started with cms.
@@ -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 {