I am new to Angular and had a request to do the following:
- User creates an account(Or any other activities).
- If user has not used account, lets say a week.
- I need to send them a notification. (I don't need to do this until no.1 and 2 is sorted)
Here are my thoughts:
- Save the date/time when user has created account (add date/time to all activities).
- Use something that constantly loops through all accounts.
- Check if activities in each account has not been used, maybe use a counter or bool to check if they had or not. If they had a return of true then do not compare date/time otherwise do so.
We are using php and ajax for our back-end scripting. Can you guys tell me what something is used for auto checking in angular and if you have a better solution can you share it. Thanks.