Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikoo-asadnejad/notificationservice
This repository contains a notification service designed to handle and send notifications through multiple channels. The system is composed of three microservices for email, SMS, and push notifications, all of which are orchestrated using RabbitMQ for messaging.
https://github.com/nikoo-asadnejad/notificationservice
dotnet dotnet-core email email-sender emails microservice microservices microservices-architecture notification-service notifications push-notifications pushnotification pushnotifications queue queues rabbit-mq rabbitmq sms sms-api
Last synced: 3 months ago
JSON representation
This repository contains a notification service designed to handle and send notifications through multiple channels. The system is composed of three microservices for email, SMS, and push notifications, all of which are orchestrated using RabbitMQ for messaging.
- Host: GitHub
- URL: https://github.com/nikoo-asadnejad/notificationservice
- Owner: Nikoo-Asadnejad
- Created: 2023-08-25T06:12:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-17T19:18:23.000Z (5 months ago)
- Last Synced: 2024-09-17T23:52:08.800Z (5 months ago)
- Topics: dotnet, dotnet-core, email, email-sender, emails, microservice, microservices, microservices-architecture, notification-service, notifications, push-notifications, pushnotification, pushnotifications, queue, queues, rabbit-mq, rabbitmq, sms, sms-api
- Language: C#
- Homepage:
- Size: 17.4 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NotificationService
This repository contains a notification service designed to handle and send notifications through multiple channels. The system is composed of three microservices for email, SMS, and push notifications, all of which are orchestrated using RabbitMQ for messaging.
## Overview
The Notification Service is built to support sending notifications via:
- Email: Handles sending of transactional and promotional emails.
- SMS: Manages sending of text messages to mobile devices.
- Push Notifications: Facilitates sending of notifications to mobile and web applications.## Architecture
The architecture is built around a message-driven microservices approach:
- Notification Service API: Central API for receiving notification requests and dispatching them to appropriate channels.
- Email Microservice: Processes email notifications.
- SMS Microservice: Manages SMS notifications.
- Push Notification Microservice: Sends push notifications to users.## RabbitMQ
RabbitMQ is used as the messaging broker to facilitate communication between the Notification Service API and the microservices. It ensures reliable and scalable message delivery.