diff --git a/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.html.hbs b/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.html.hbs
index 05ca170a50..ad2245e585 100644
--- a/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.html.hbs
+++ b/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.html.hbs
@@ -9,9 +9,8 @@
Here's what that means:
- - This account should only be used to store items related to {{OrganizationName}}
- - Admins managing your Bitwarden organization manage your email address and other account settings
- - Admins can also revoke or delete your account at any time
+ - Your administrators can delete your account at any time
+ - You cannot leave the organization
|
diff --git a/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.text.hbs b/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.text.hbs
index c0078d389d..b3041a21e9 100644
--- a/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.text.hbs
+++ b/src/Core/MailTemplates/Handlebars/AdminConsole/DomainClaimedByOrganization.text.hbs
@@ -1,8 +1,7 @@
As a member of {{OrganizationName}}, your Bitwarden account is claimed and owned by your organization.
Here's what that means:
-- This account should only be used to store items related to {{OrganizationName}}
-- Your admins managing your Bitwarden organization manages your email address and other account settings
-- Your admins can also revoke or delete your account at any time
+- Your administrators can delete your account at any time
+- You cannot leave the organization
For more information, please refer to the following help article: Claimed Accounts (https://bitwarden.com/help/claimed-accounts)
diff --git a/src/Core/Services/Implementations/HandlebarsMailService.cs b/src/Core/Services/Implementations/HandlebarsMailService.cs
index 22341111f3..deae80c056 100644
--- a/src/Core/Services/Implementations/HandlebarsMailService.cs
+++ b/src/Core/Services/Implementations/HandlebarsMailService.cs
@@ -472,7 +472,7 @@ public class HandlebarsMailService : IMailService
"AdminConsole.DomainClaimedByOrganization",
new ClaimedDomainUserNotificationViewModel
{
- TitleFirst = $"Hey {emailAddress}, here is a heads up on your claimed account:",
+ TitleFirst = $"Hey {emailAddress}, your account is owned by {org.DisplayName()}",
OrganizationName = CoreHelpers.SanitizeForEmail(org.DisplayName(), false)
});
}