diff --git a/goofy-client/libs/postfach-shared/src/lib/postfach.model.ts b/goofy-client/libs/postfach-shared/src/lib/postfach.model.ts
index 3fc1d37b3cdcbd36408bd5847aba1bad1878160a..16b14da973576f667d55f47b6a9e35ac31e94115 100644
--- a/goofy-client/libs/postfach-shared/src/lib/postfach.model.ts
+++ b/goofy-client/libs/postfach-shared/src/lib/postfach.model.ts
@@ -27,8 +27,6 @@ export enum ReplyOption {
 }
 
 export enum PostfachOrder {
-	//@Deprecated
-	SEND_POSTFACH_MAIL = 'SEND_POSTFACH_MAIL',
 	SEND_POSTFACH_NACHRICHT = 'SEND_POSTFACH_NACHRICHT',
 	RESEND_POSTFACH_MAIL = 'RESEND_POSTFACH_MAIL'
 }
diff --git a/goofy-client/libs/vorgang-shared/src/lib/vorgang.service.ts b/goofy-client/libs/vorgang-shared/src/lib/vorgang.service.ts
index 442980464e5437c0ba209ad07e162fd183b3f700..05b8cef25a4727432d96f3806e1f22e4a999e6dc 100644
--- a/goofy-client/libs/vorgang-shared/src/lib/vorgang.service.ts
+++ b/goofy-client/libs/vorgang-shared/src/lib/vorgang.service.ts
@@ -95,7 +95,7 @@ export class VorgangService {
 
 	handlePendingSendPostfachMailCommand(pendingCommandList: CommandListResource): void {
 		if (!this.pendingSendPostfachMailCommand$.value.loaded) {
-			this.setPendingSendPostfachMailCommand(createStateResource(getPendingCommandByOrder(pendingCommandList, [PostfachOrder.SEND_POSTFACH_MAIL, PostfachOrder.SEND_POSTFACH_NACHRICHT])));
+			this.setPendingSendPostfachMailCommand(createStateResource(getPendingCommandByOrder(pendingCommandList, [PostfachOrder.SEND_POSTFACH_NACHRICHT])));
 		}
 	}