1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-02 18:47:44 +01:00

update copy for domain claimed by organization email (#5138)

This commit is contained in:
Brandon Treston 2024-12-12 13:54:04 -05:00 committed by GitHub
parent 867fa848dd
commit 03dde0d008
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 7 deletions

View File

@ -9,9 +9,8 @@
<td style="font-family:'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; margin-top: 30px; margin-bottom: 25px; margin-left: 35px; margin-right: 35px;"> <td style="font-family:'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; margin-top: 30px; margin-bottom: 25px; margin-left: 35px; margin-right: 35px;">
<b>Here's what that means:</b> <b>Here's what that means:</b>
<ul> <ul>
<li>This account should only be used to store items related to {{OrganizationName}}</li> <li>Your administrators can delete your account at any time</li>
<li>Admins managing your Bitwarden organization manage your email address and other account settings</li> <li>You cannot leave the organization</li>
<li>Admins can also revoke or delete your account at any time</li>
</ul> </ul>
</td> </td>
</tr> </tr>

View File

@ -1,8 +1,7 @@
As a member of {{OrganizationName}}, your Bitwarden account is claimed and owned by your organization. As a member of {{OrganizationName}}, your Bitwarden account is claimed and owned by your organization.
Here's what that means: Here's what that means:
- This account should only be used to store items related to {{OrganizationName}} - Your administrators can delete your account at any time
- Your admins managing your Bitwarden organization manages your email address and other account settings - You cannot leave the organization
- Your admins can also revoke or delete your account at any time
For more information, please refer to the following help article: Claimed Accounts (https://bitwarden.com/help/claimed-accounts) For more information, please refer to the following help article: Claimed Accounts (https://bitwarden.com/help/claimed-accounts)

View File

@ -472,7 +472,7 @@ public class HandlebarsMailService : IMailService
"AdminConsole.DomainClaimedByOrganization", "AdminConsole.DomainClaimedByOrganization",
new ClaimedDomainUserNotificationViewModel 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) OrganizationName = CoreHelpers.SanitizeForEmail(org.DisplayName(), false)
}); });
} }