My board has multiple lists. Is there a way to email a specific list on a given board?
Thanks!
Adding a vote to this, but it seems like this is a dead issue. Seems like a great feature to fill the gap between emailing boards and emailing cards. I think it would be fine to have something similar to adding labels. Maybe ~ListName in the subject to place it in the correct list.
Hi Ryan,
Right now, there's not, but I can definitely pass that request along to the team!
Now, in your board settings, you can choose the one list that your emailed cards will be added to, or you can email specific cards, but not specific lists yet. I like this idea, though!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great, thanks for passing it on. I find it easier to manage different tasks within a project as different cards in a list (which all belong to a given board, or subject). Others may be better at managing tasks within a card, but I find it helpful to be able to re-sort cards, which cannot be done easily with items on a card.
Again, appreciate your help moving forward!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just want to second this. I am starting to email things to my Team Member's Trello Lists. I one board per team and I have a list for each team member on their given Team's Board. I would love to be able to email the specific Team Members List a To-Do.
Right now I have selected at random one Team Members List on each board, so that I can email that Board and then go to Trello and move the Card to the correct List.
Thanks for looking into this. Any movement?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We third this! We have a board with to-be-filed lists and want to be able to email to a particular list within the same board.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We fourth this! Any update team?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We fifth this! Would be nice if it can be like tagging, ie #list_x
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I enthusiastically support adding this feature! I envisioned a great set-up for an inbox board . . . that was impossible without this feature. It seems odd we can mail to a board and a card but not to a list.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looking for the same feature
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same here!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I TOTALLY want this too - I did a search on HOW to do this?? and found this thread! PLEASE TRELLO - would be awesome!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any news?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm also looking for the feature... a few years later! It seems like a major oversight and limitation that you can email a BOARD or a CARD, but not the in between (the LIST).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Adding my vote to the pile. List specific email would be awesome. Even for 2-3 lists.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This would be an amazing feature to have, I was actively searching for how to do this when I stumbled on this post.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1
I was looking to see if this could be done and came across this post. Either some type of flag in the email itself or a unique email address like with boards and cards to email to a specific list.
I submitted this to feature-ideas@trello.com , hopefully it will be considered
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I ended up just using the Trello API and a PowerShell script. Every list has an ID so you can create new cards in any list you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for any "how to" you may want to supply for this workaround.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Here is the API info for creating a card. The idList is where you designate which list the card goes to: https://developer.atlassian.com/cloud/trello/rest/api-group-cards/
Each list has an ID: https://developer.atlassian.com/cloud/trello/rest/api-group-cards/
For PowerShell specifically, there is a good module which has a lot of the API wrapped in cmdlets: https://www.powershellgallery.com/packages/PowerTrello/1.7.23
Or if you want to just use cURL, this is what I am using in one of my scripts:
curl.exe --request POST --max-time 40 --retry 3 --retry-delay 5 --progress-bar --url "https://api.trello.com/1/cards?$APIKEY" `
--form "idList=$LISTID" `
--form "pos=top" `
--form "name=$CARDTITLE" `
--form "fileSource=@$_;type=application/pdf"
I'm using cURL instead of Invoke-RestMethod because when attaching PDF's to cards I can't set the mime type.
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, this is needed!
We now have a workaround. We have different users who configured the mail-to-board email address in the settings each for a different list. And we use the email address from the user, depending on the list where it should appear. But it's a totally lame solution, because cards will appear on the board like they were created by one user, whereas it's actually another user who used the first one's mail-to-board email address.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Me eleven! We could really use this feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm adding my voice here, definitely need a list chooser for cards by mail feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@ (named of list) in subject of emails drops it onto a specific list on a board. But if there is an easier way I will make my vote the 10th. Even if this is part of the paid membership only it would be worth it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Karla - does that mean in the subject of the email you simply type
"@"
followed by one space
followed by
"exact name of list" ?
Coz I just tried without the space and it didn't work - but i did have other things in the subject heading
thanking you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is how I solved this problem.
I have one board with a list for each of my team members and I needed to email tasks to specific people which means specific lists.
So I created a new free workspace and there I created one board for each of my team member.
In each board I created one list with the name of the team member.
Then I added my main Trello account to all of these boards.
So now I had a different email for each of my team members.
So I created a rule that copies the cards created in the single team member board trough the email into the main board that contains all my team members in the list corresponding to the same team member.
I had to do this for every single team member but it is working greatly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.