diff --git a/server/pkg/controller/email/email_notification.go b/server/pkg/controller/email/email_notification.go index 01b9466836..56bc91f013 100644 --- a/server/pkg/controller/email/email_notification.go +++ b/server/pkg/controller/email/email_notification.go @@ -23,11 +23,11 @@ const ( FilesCollectedTemplateID = "files_collected" FilesCollectedSubject = "You've got photos!" SubscriptionUpgradedTemplate = "subscription_upgraded.html" - SubscriptionUpgradedSubject = "Thank you for choosing ente!" + SubscriptionUpgradedSubject = "Thank you for choosing Ente!" FilesCollectedMuteDurationInMinutes = 10 StorageLimitExceededSubject = "[Alert] You have exceeded your storage limit" ReferralSuccessfulTemplate = "successful_referral.html" - ReferralSuccessfulSubject = "You've earned 10 GB on ente! 🎁" + ReferralSuccessfulSubject = "You've earned 10 GB on Ente! 🎁" ) type EmailNotificationController struct { diff --git a/server/pkg/controller/family/admin.go b/server/pkg/controller/family/admin.go index aba7f428b0..3db9aa4b72 100644 --- a/server/pkg/controller/family/admin.go +++ b/server/pkg/controller/family/admin.go @@ -220,18 +220,18 @@ func (c *Controller) sendNotification(ctx context.Context, adminUserID int64, me if newStatus == ente.INVITED { templateName = InviteTemplate - title = "You've been invited to join a family on ente!" + title = "You've been invited to join a family on Ente!" emailTo = memberUser.Email inlineImage["content"] = HappyHeaderImage } else if newStatus == ente.REMOVED { emailTo = memberUser.Email templateName = RemovedTemplate - title = "You have been removed from the family account on ente" + title = "You have been removed from the family account on Ente" inlineImage["content"] = SadHeaderImage } else if newStatus == ente.LEFT { emailTo = adminUser.Email templateName = LeftTemplate - title = fmt.Sprintf("%s has left your family on ente", memberUser.Email) + title = fmt.Sprintf("%s has left your family on Ente", memberUser.Email) inlineImage["content"] = SadHeaderImage } else if newStatus == ente.ACCEPTED { emailTo = adminUser.Email diff --git a/server/pkg/controller/public_collection.go b/server/pkg/controller/public_collection.go index 694db8bb10..d526837ddd 100644 --- a/server/pkg/controller/public_collection.go +++ b/server/pkg/controller/public_collection.go @@ -38,11 +38,11 @@ const ( DeviceLimitWarningThreshold = 2000 - AbuseAlertSubject = "[Alert] Abuse report received against your album on ente" + AbuseAlertSubject = "[Alert] Abuse report received against your album on Ente" AbuseAlertTeamSubject = "Abuse report received" - AbuseLimitExceededSubject = "[Alert] Too many abuse reports received against your album on ente" + AbuseLimitExceededSubject = "[Alert] Too many abuse reports received against your album on Ente" AbuseAlertTemplate = "report_alert.html" diff --git a/server/pkg/controller/user/user.go b/server/pkg/controller/user/user.go index ddd6cf2dec..c81ff73c8a 100644 --- a/server/pkg/controller/user/user.go +++ b/server/pkg/controller/user/user.go @@ -93,7 +93,7 @@ const ( // their account. AccountDeletedEmailTemplate = "account_deleted.html" AccountDeletedWithActiveSubscriptionEmailTemplate = "account_deleted_active_sub.html" - AccountDeletedEmailSubject = "Your ente account has been deleted" + AccountDeletedEmailSubject = "Your Ente account has been deleted" ) func NewUserController(