diff --git a/src/Core/MailTemplates/Handlebars/OrganizationUserInvited.html.hbs b/src/Core/MailTemplates/Handlebars/OrganizationUserInvited.html.hbs
index 249104059..9233e7f66 100644
--- a/src/Core/MailTemplates/Handlebars/OrganizationUserInvited.html.hbs
+++ b/src/Core/MailTemplates/Handlebars/OrganizationUserInvited.html.hbs
@@ -16,8 +16,14 @@
If you do not wish to join this organization, you can safely ignore this email.
{{#if OrganizationCanSponsor}}
-
- Did you know? Members of {{OrganizationName}} receive a complimentary Families subscription. Learn more at the following link: https://bitwarden.com/help/article/families-for-enterprise/
+
+
+ Did you know?
+
+ Members of {{OrganizationName}} receive a complimentary Families subscription. Learn more at the
+ following link: https://bitwarden.com/help/article/families-for-enterprise/
+
{{/if}}
|
diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs
index 246263360..64a441d4f 100644
--- a/src/Core/Services/Implementations/OrganizationService.cs
+++ b/src/Core/Services/Implementations/OrganizationService.cs
@@ -1278,10 +1278,10 @@ namespace Bit.Core.Services
}
- private static bool CheckOrganizationCanSponsor(Organization organization)
+ private bool CheckOrganizationCanSponsor(Organization organization)
{
return StaticStore.GetPlan(organization.PlanType).Product == ProductType.Enterprise
- && !organization.SelfHost;
+ && !_globalSettings.SelfHosted;
}
public async Task