1
Hello my name is André Neto, I am developing a software, and within it there is a central mail, where the user can send an email from within the system and I store this sending data. Now the problem, I need to notify the person who received the email, (Obs: it is registered in my system by your email), via a browser notification, as well as facebook does with notifications, and I would like to make that notification even if the person is not logged in to my system, the server would send that message. Any idea how I can do this is very accepted! Thanks in advance.
Have you done anything? What language do you have on the server and what part already works?
– Sergio
I made the email sending application, it sends the email and saves the information in the database, and the email is sent.
– Andre Neto
what technology do you use on the server? but I can say that the ideal is with the use of
Notification API
in the Client andWeb Sockets
on the Server. ToASP.NET
has theSignalR
, forNode.JS
has the Socket.IO,PHP
theRatchet
andJava
SockJS
– Tobias Mesquita
I think I expressed myself wrong, I would like to notify another user logged into the system if he receives an email from within my system through another user.
– Andre Neto
@Andreneto this is the central idea of the above tools
– Tobias Mesquita
I’m gonna take a look at Sockjs, 'cause that’s the language I know best.
– Andre Neto