O Discourse pode produzir uma lista dos e-mails para os quais enviei convites

Hi Jerry :slight_smile:

You could use data explorer for this.
The query should be something like:

SELECT email FROM invites
WHERE redeemed_at IS NULL

You can output the results in JSON or CSV.

To be tweaked if needed. Other fields may need to be added, like deleted_at or invalidated_at.

2 curtidas