Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Last active March 4, 2021 23:23
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 iaindooley/1bb36e02e9a1d0cda878024a26e6dd2e to your computer and use it in GitHub Desktop.
Save iaindooley/1bb36e02e9a1d0cda878024a26e6dd2e to your computer and use it in GitHub Desktop.
Email members list
var board = new Trellinator().board("YOUR BOARD NAME");
var youremail = "ADD YOUR EMAIL HERE";
///DO NOT EDIT BELOW HERE
var boardmembers = board.members().find(function(member)
{
return member.name();
}).asArray().join("\n");
var list = Card
.create(board.lists().first(),"ALL MEMBERS LIST")
.postComment("@to "+youremail+"\n"+boardmembers)
.archive();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment