Any ideas around designing and/or implementing Java based Email alerting system (similar to RSS) which would let users pick the frequency, application type, email content and based on their preferences the alerting system would call a program to generate emails. The program would get the data from the database and populate it in the email body. Now, the question really is how to tie up the two pieces together i.e. based on the user preferences trigger the program for email generation.
Any ideas around designing and/or implementing Java based Email alerting system (similar to RSS)
Share
Seems a pretty simple set of requirements
Scheduled job (cron, DBMS_SCHEDULER, whatever) runs every x minutes.
‘next_send_date’ in the the next x
minutes.
which of those looks like it is difficult ?