Here's the thing. I need a daemon running on the server which basically will open an smtp connection, then it will expect calls to the process to send e-mails through the opened connection.
This is to avoid connecting to the smtp every time, instead I can receive multiple calls to the process but connection only one time.
By the way, the SMTP always authenticates with the same user and password, no need of a different authentication by each user.
Does this make any sense?