Reputation: 2094
I have a web application which has several users and each user will have some username which will be unique.
What I want is every registered user get a unique email id like when user xyz registers he gets [email protected].
This user registers using our web application developed in java, struts2, hibernate etc.
I will need a mail server to do this that I understood, but I do not want to write a mail server application but just talk to that application with some api calls or something.
I am evaluation hmail serve which is java based open source solution, any other solution that will address this particular usecase.
I want my application to act like the front end to this some like any other email service provider.
Upvotes: 0
Views: 532
Reputation: 32407
Have a look at Spring's email library: http://static.springsource.org/spring/docs/3.0.x/reference/mail.html
Upvotes: 0