Update template

This commit is contained in:
vishnukvmd
2025-01-04 17:16:05 +05:30
parent f967b6b00e
commit a11ea3b41b
2 changed files with 2 additions and 2 deletions

View File

@@ -105,7 +105,7 @@
<p>Thank you for giving Ente a shot, and apologies for not meeting your expectations.</p>
<p>This is my personal email address. Please let me know what we could have done better, I'd be grateful for feedback!</p>
<p>This is my personal email address. Please let me know what we could have done better, we'd be grateful for feedback!</p>
<p>Best,
<br/>

View File

@@ -122,7 +122,7 @@ func (c *EmailNotificationController) OnSubscriptionCancelled(userID int64) {
return
}
log.Info(fmt.Sprintf("Emailing on subscription cancellation %d", user.ID))
err = email.SendTemplatedEmail([]string{user.Email}, "vishnu@ente.io", "vishnu@ente.io", SubscriptionUpgradedSubject, SubscriptionUpgradedTemplate, nil, nil)
err = email.SendTemplatedEmail([]string{user.Email}, "vishnu@ente.io", "vishnu@ente.io", SubscriptionCancelledSubject, SubscriptionCancelledTemplate, nil, nil)
if err != nil {
log.Error("Error sending email", err)
}