I'm a newbie to Alexa skills development. I have a question regarding delivering reminders to users. For example, if I want to remind users something every 30 minutes, and every time the content of the reminder is different (e.g., drink water or take exercise). Is it feasible?
What I was thinking was to have users invoke the skills by saying something like "enable the reminder every 30 minutes". When receiving this intent, the skill could set a timer on the backend, and repeat the responses every 30 minutes, which means I need a loop. But from what I understand, the handler that deals with the intent doesn't work with loop. So I'm not sure how to work on that. Any ideas?
Thanks!