Last updated:
0 purchases
pip services msgdistribution
Message Distribution Microservice #
This microservice is distributes messages to one or many recipients
using their configured delivery methods: email or sms.
The microservice currently supports the following deployment options:
Deployment platforms: Standalone Process, Seneca
External APIs: HTTP/REST, Seneca
This microservice has optional dependencies on the following microservices:
pip-services-emailsettings - recipient email settings
pip-services-smssettings - recipient sms settings
pip-services-email - email sending
pip-services-sms - sms sending
pip-services-msgtemplates - message templates
Quick Links:
Download Links
Development Guide
Configuration Guide
Deployment Guide
Client SDKs
Node.js SDK
Communication Protocols
HTTP Version 1
Seneca Version 1
Contract #
Logical contract of the microservice is presented below. For physical implementation (HTTP/REST, Thrift, Seneca, Lambda, etc.),
please, refer to documentation of the specific protocol.
class MessageV1 {
String template;
String from;
String cc;
String bcc;
String reply_to;
var subject;
var text;
var html;
}
abstract class IMessageDistributionV1 {
Future sendMessage(String? correlationId, RecipientV1 recipient,
MessageV1 message, ConfigParams parameters, String method);
Future sendMessages(String? correlationId, List<RecipientV1> recipients,
MessageV1 message, ConfigParams parameters, String method);
Future sendMessageToRecipient(
String? correlationId,
String recipientId,
String subscription,
MessageV1 message,
ConfigParams parameters,
String method);
Future sendMessageToRecipients(
String? correlationId,
List<String> recipientIds,
String subscription,
MessageV1 message,
ConfigParams parameters,
String method);
}
copied to clipboard
Message can be defined directly or loaded from message template (stored in msgtemplates service);
When message is set directly its subject, text and html content can be set by handlebars template,
that it processed using parameters set. Here is an example:
Dear {{ name }},
<p/>
Please, help us to verify your email address. Your verification code is {{ code }}.
<p/>
Click on the
<a href="{{ clientUrl }}/#/verify_email?server_url={{ serverUrl }}&email={{ email }}&code={{ code }}">link</a>
to complete verification procedure
<p/>
---<br/>
{{ signature }}
copied to clipboard
Download #
Right now the only way to get the microservice is to check it out directly from github repository
git clone [email protected]:pip-services-users/pip-services-msgdistribution-dart.git
copied to clipboard
Pip.Service team is working to implement packaging and make stable releases available for your
as zip downloadable archieves.
Run #
Add config.yml file to the root of the microservice folder and set configuration parameters.
As the starting point you can use example configuration from config.example.yml file.
Example of microservice configuration
---
- descriptor: "pip-services-commons:logger:console:default:1.0"
level: "trace"
- descriptor: "pip-services-msgdistribution:controller:default:default:1.0"
- descriptor: "pip-services-msgdistribution:service:http:default:1.0"
connection:
protocol: "http"
host: "0.0.0.0"
port: 8080
copied to clipboard
For more information on the microservice configuration see Configuration Guide.
For more information on the microservice configuration see Configuration Guide.
Start the microservice using the command:
dart ./bin/run.dart
copied to clipboard
Use #
The easiest way to work with the microservice is to use client SDK.
The complete list of available client SDKs for different languages is listed in the Quick Links
If you use dart, then get references to the required libraries:
Pip.Services3.Commons : https://github.com/pip-services3-dart/pip-services3-commons-dart
Pip.Services3.Rpc:
https://github.com/pip-services3-dart/pip-services3-rpc-dart
Add pip-services3-commons-dart, pip-services3-rpc-dart and pip-services_msgdistribution packages
import 'package:pip_services3_commons/pip_services3_commons.dart';
import 'package:pip_services3_rpc/pip_services3_rpc.dart';
import 'package:pip_services_msgdistribution/pip_services_msgdistribution.dart';
copied to clipboard
Instantiate the client and open connection to the microservice
// Create the client instance
var client = MessageDistributionHttpClientV1(config);
// Configure the client
client.configure(httpConfig);
// Connect to the microservice
try{
await client.open(null)
}catch() {
// Error handling...
}
// Work with the microservice
// ...
copied to clipboard
Now the client is ready to perform operations
// Send email message to users
var recipient1 = RecipientV1(id: '1', email: '[email protected]', phone: '+1234567890');
var recipient2 = RecipientV1(id: '2', email: '[email protected]', phone: '+0987654321');
var message = MessageV1(subject: 'Test',
text: 'This is a test message. Please, ignore it');
await client.sendMessages(
null,
[
recipient1,
recipient2
],
message,
null,
DeliveryMethod.All
);
copied to clipboard
Acknowledgements #
This microservice was created and currently maintained by
Sergey Seroukhov
Nuzhnykh Egor.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.