diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 972fd60cc2e..c6d9d325e00 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -6127,6 +6127,9 @@
"emailPlaceholder": {
"message": "user@bitwarden.com , user@acme.com"
},
+ "emailProtected": {
+ "message": "Email protected"
+ },
"sendPasswordHelperText": {
"message": "Individuals will need to enter the password to view this Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
diff --git a/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.html b/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.html
index 2ece050e8c3..c4367d3ac57 100644
--- a/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.html
+++ b/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.html
@@ -26,16 +26,22 @@
>
{{ send.name }}
-
-
- {{ "maxAccessCountReached" | i18n }}
-
-
+
+ @if (send.authType !== authType.None) {
+ @let titleKey =
+ send.authType === authType.Email ? "emailProtected" : "passwordProtected";
+
+ {{ titleKey | i18n }}
+ }
+ @if (send.maxAccessCountReached) {
+
+ {{ "maxAccessCountReached" | i18n }}
+ }
+
{{ "deletionDate" | i18n }}: {{ send.deletionDate | date: "mediumDate" }}
diff --git a/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.ts b/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.ts
index 63f4b97105a..2f543fb5879 100644
--- a/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.ts
+++ b/libs/tools/send/send-ui/src/send-list-items-container/send-list-items-container.component.ts
@@ -12,6 +12,7 @@ import { LogService } from "@bitwarden/common/platform/abstractions/log.service"
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { SendView } from "@bitwarden/common/tools/send/models/view/send.view";
import { SendApiService } from "@bitwarden/common/tools/send/services/send-api.service.abstraction";
+import { AuthType } from "@bitwarden/common/tools/send/types/auth-type";
import { SendType } from "@bitwarden/common/tools/send/types/send-type";
import {
BadgeModule,
@@ -45,6 +46,7 @@ import {
})
export class SendListItemsContainerComponent {
sendType = SendType;
+ authType = AuthType;
/**
* The list of sends to display.
*/