Re: [akka-user] Implementing mailing service using Akka

2017-11-10 Thread Richard Rodseth
You could potentially use the query side of Akka Persistence (eventsByTag) to stream requests for email sends, feeding failures back into the journal with the same tag, so they reenter the stream. https://doc.akka.io/docs/akka/2.5/scala/persistence-query.html On Fri, Nov 10, 2017 at 5:16 AM,

[akka-user] Implementing mailing service using Akka

2017-11-10 Thread Traven
Hello, I have a simple Play application that does some statistical analysis of data and alerts customers with alerts when something is wrong. Sometimes it happens, that sending alert fails (SMTP server down, network errors) etc. I was thinking of a way to make the email sending process more