-
-
Notifications
You must be signed in to change notification settings - Fork 5
CardEmailedTrigger
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
5 revisions
Back to Automation Trigger List
Trigger when a card is emailed to the board
- None
var cardEmailedTriggerAutomation = new Automation("Add a 'From Email' Checklist to card if it is emailed to the board",
new CardEmailedTrigger(), // <-- Our trigger is when a Card is Emailed
null, //No Condition
new List<IAutomationAction>
{
new AddChecklistToCardAction(new Checklist("Email Follow-up", new List<ChecklistItem>
{
new ChecklistItem("Ensure no confidential data is on this card"),
new ChecklistItem("Follow-up on email-sender"),
}))
});If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')