BotBuilder-MicrosoftTeams: Can't @mention a Team or Channel
When sending an Activity into a Channel, you can @mention a single user, but you cannot do the same for a Team or Channel. This would be very helpful functionality for starting conversations that should be seen by an entire team.
For mentioning a user (using C#), it’s as simple as this:
// there is a ChannelAccount object with the correct ID called userAccount activity.AddMentionToText(userAccount, MentionTextLocation.PrependText, "Firstname Lastname");
Ideally, it would be just as simple to mention a team, like this:
activity.AddMentionToText(teamAccount, MentionTextLocation.PrependText, "Team Name");
About this issue
- Original URL
- State: open
- Created 6 years ago
- Reactions: 12
- Comments: 21 (2 by maintainers)
4 years later???
It should not have been closed. It still has not yet been implemented.
Any update on this? I’d like to be able to mention a team or a channel without having to mention each individual member
Lol that was me asking the question on stack overflow, thanks for the response here as well.