many weeks ago recommended me for send emails, ActiveMQ. So i search information about this, but i don't understand totally how this works. Could someone explain me why i should use ActiveMQ for send emails ?
|
I think there has been a communication breakdown.
|
|||||
|
|
@oxbow_lakes's answer maybe correct for your situation, but there's another possibility. Maybe the reason for that recommendation (to use ActiveMQ) was so that the client application that wants to send an email can delegate the task of sending an email to an email service application through ActiveMQ. The benefit I can see is that the call would be asynchronous, so the client application will not block even when there are millions of emails to send, since that can be taken care of by the email service application in the background. |
|||
|
|
|
You probably should take a look at JavaMail. http://java.sun.com/products/javamail/FAQ.html
I guess you could use AMQ for queuing up email messages to send to an SMTP end point. The Mule framework can be used to do this. |
||||
|
|
|
Active MQ has nothing to do with sending e-mails. Active MQ is used for sending messages over the network. While for you to send the e-mails, all you need is the smtp host server details. |
|||
|
|