Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions services/email.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@ func SendVerificationMail(userId uint, email, role string) (error) {
</style>
</head>
<body>
<h2>Verifying it's you,</h2>
<p>Thanks for signing up! get started with cms:</p>
<h2>Verifying it's you.</h2>
<p>Thanks for signing up! get started with cms.</p>
<p>
<a href="%s" class="button" style="color: white;">Get Started!</a>
</p>
</body>
</html>
`, verificationURL)

err = SendMail(email, "Verification of cms account", mail)
err = SendMail(email, "Verification of your cms account", mail)
if err != nil {
return err
}
Expand Down Expand Up @@ -103,7 +103,7 @@ func SendPasswordResetMail(userID uint, email, role string) error {
</html>
`, resetURL)

err = SendMail(email, "Reset cms account password", mail)
err = SendMail(email, "Reset your cms account password", mail)
if err != nil {
return err
}
Expand Down
Loading