Skip to content

Instantly share code, notes, and snippets.

@hootlex
Last active November 22, 2017 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hootlex/f48d486ec9c186317e703f2be5b8fcc9 to your computer and use it in GitHub Desktop.
Save hootlex/f48d486ec9c186317e703f2be5b8fcc9 to your computer and use it in GitHub Desktop.
How to export all email invites from Slack

How to export all email invites from Slack

Visit https://MYCHANNEL.slack.com/admin/invites and run

const emails = []
Array.from($('.email')).forEach(invite => emails.push(invite.innerText))
copy(emails)

Then you have an array with all the invites (accepted and pending) in your clipboard 🙃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment