Created
September 27, 2021 23:26
-
-
Save iaindooley/62b1b99fc73d6b039f1ba68752c97edd to your computer and use it in GitHub Desktop.
emailTransporters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var created = new Notification(notification).createdCard(/Orders.*/); | |
var holding_list = created.board().list("Waiting ... "); | |
created.board().list("Transporters").cards().each(function(card) | |
{ | |
Card.create(holding_list,"RFQ Order #"+created.id()).postComment( | |
//include whatever info from the order card here, just putting description as an example | |
//which might have all the form field submissions | |
"@to "+card.name()+" "+card.description+"\n"+created.description() | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment