It's possible in Alfresco to send a mail as soon as a document is added or updated. Now, I'm looking for an extension that can do exactly that but not when the action happens but at a given interval (e.g. once ad day, a week, a month). We have configured something like this for a given space but I would like it as a rule so that users can add this for themselves.
Is there an extension out there (in Forge maybe) that can do this?
We made something similar using behaviours and scheulded actions (search on Alfresco´s wiki). Here are some tips:
1.- Use a behaviour (onUpdateProperties) to write the date when an email has to be send on a tablein a database.
2.- Use a scheuled action to read thedatabase (once or twice per day), if the date for today its the same as the date to send the email, then send the email and erase the entry on the database.
Well, if I find out how to build an AMP that works and also change the code to make it more clear (and without errors) maybe I will release an AMP file (or at least I´ll write the code in the forums). But I have to say that our system to send emails is still a test to see how Alfresco works.