Refactor RabbitMqEmailQueue to OutgoingEmailQueue

Replaced `RabbitMqEmailQueue` with `OutgoingEmailQueue` in the
dependency injection container to reflect the updated class name.
Renamed the class `RabbitMqEmailQueue` to `OutgoingEmailQueue`
in `OutgoingEmailQueue.cs`, including updates to the constructor
and logger type. This refactor aligns the class name with its
purpose and improves clarity in the codebase.
This commit is contained in:
2026-07-23 16:55:04 +02:00
parent fbd6c0c521
commit 42e9361f1d
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ public static class DependencyInjection
services.AddSingleton<IEncryptionService, DataProtectionEncryptionService>();
// --- Email Queue (RabbitMQ) ---
services.AddSingleton<IEmailQueue, RabbitMqEmailQueue>();
services.AddSingleton<IEmailQueue, OutgoingEmailQueue>();
// --- RabbitMQ Configuration ---
services.Configure<RabbitMqConfiguration>(