Does it make sense to use JMS and JavaMail together to build a scalable email solution?
Presently these are the 2 options I am considering:
-- Build a RESTful email center API and call it from all over the web app.
-- Use JMS in between the web app and the email center.
The 'email center' as I call it will probably be implemented using JavaMail. Am I on the right track? Is there some other option that I might have missed?
Is there an advantage using one over the other? I am primarily looking for scalability.