I have a issue with the ReminderScheduled function. The idea is to send a reminder to all our users every day at 9am. So far the function manage to send the reminder just to 1 users, but the other users does not receive the reminder.
I already check the actions server in debug mode, I can see how the action for the ReminderScheduled was executed. The problems comes when the reminder is trigger, it is not reaching out all the users, jus one.
Right. Every reminder must have a unique name. A random string will be chosen if you don’t provide a name. What happens if you don’t provide a name, i.e. ReminderScheduled("EXTERNAL_start_s2", trigger_date_time=returntime, kill_on_user_message=False)?
No, uuid.uuid1() generates random objects of 128 bits. You would still need to set names by yourself if you want to be able to cancel one particular reminder, so the name field in ReminderScheduled should be there.