Overview

The Notification domain is responsible for sending transactional emails to customers at critical points in the order lifecycle. Acting as a supporting domain within the BookWorm ecosystem, it listens for integration events from other domains and transforms them into appropriate customer communications. The domain is designed with reliability and scalability in mind, implementing resilience patterns to ensure message delivery even in degraded network conditions.

Technical Implementation

The Notification domain is implemented using modern cloud-native practices:

  • Event-Driven Architecture: Consumes events from other domains using MassTransit
  • Provider Abstraction: Supports multiple email delivery mechanisms (SMTP, SendGrid)
  • Resilience Patterns: Implements retry policies, timeouts, and circuit breakers
  • Observability: Integrated with OpenTelemetry for distributed tracing
  • Health Monitoring: Includes health checks for external dependencies

Email Providers

The service supports multiple email delivery mechanisms:

  • Development Environment: Uses local SMTP server (MailPit) for testing
  • Production Environment: Integrates with SendGrid for reliable email delivery
  • Resilient Communication: Implements exponential backoff retry policies

Key Responsibilities

The Notification domain handles several critical communication touchpoints:

  • Order Placement: Sends order confirmation emails when a new order is placed
  • Order Completion: Notifies customers when their order has been successfully fulfilled
  • Order Cancellation: Provides cancellation notifications with relevant details
  • Transactional Communication: Focuses on operational messages rather than marketing content
  • Delivery Reliability: Ensures critical notifications reach customers even during system degradation

Event Handling

The domain consumes the following integration events:

EventSourcePurpose
PlaceOrderCommandFinance ServiceTriggers order confirmation emails
CompleteOrderCommandFinance ServiceSends order completion notifications
CancelOrderCommandFinance ServiceDelivers order cancellation notices

Message Templates

Each notification type follows a standardized template structure:

  • Order Confirmation: Includes order ID, items, total amount, and estimated delivery
  • Order Completion: Contains order ID, fulfillment details, and total amount
  • Order Cancellation: Provides order ID, cancellation reason, and refund information when applicable

Bounded context

Messages for this domain

Sends messages (0)

Quickly find the message you need by searching for the name, type, or summary.
NameVersionTypeSummary
No messages found

Receives messages (3)

Quickly find the message you need by searching for the name, type, or summary.
NameVersionTypeSummary
Cancelled Order
v1.0.0eventReceive a message when an order is canceled
Completed Order
v1.0.0eventReceive a message when an order is completed
Placed Order
v1.0.0eventReceive a message when an order is placed