Repeat through users and email each user

How do I repeat through records in my user table and send an email to each one, individually? I want to do this in an action that will be called by a CRON job each day. Nothing client side.

I have my email component working well.

I can certainly create a paged query of the table, and I see the repeat action in the menu, but how do I make them work together so I can send an email for each record?

Thank you!

Database Paged Query: query
Repeat {{ query.data }}:
    Send Email {{ email }} // "email" is a database table column name

Each row's column data is available inside the Repeat step, so you can access the e-mail address

The Databased Paged Query has a particular detail, the data is accessible at query.data instead of query

Very good! Thank you.