A Zapier zap that turns any starred Gmail email into a Trello card on your chosen board and list, copying the subject and body. Turn your inbox into an actionable task board.
{
"version": "1.0",
"platform": "zapier",
"title": "Gmail Starred Email to Trello Card",
"steps": [
{
"id": 1,
"type": "trigger",
"app": "Gmail",
"event": "New Starred Email",
"config": {
"label": "STARRED"
}
},
{
"id": 2,
"type": "action",
"app": "Trello",
"event": "Create Card",
"config": {
"board": "My Board",
"list": "Inbox",
"name": "{{1.subject}}",
"description": "{{1.body_plain}}"
}
}
]
}