Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a link to open a Microsoft Teams chat to a specific person

I'm trying to embed html code on a page that provides a link, that when clicked, opens a chat window with a specific user. I've tried the following code, but when clicked Teams opens and tries to get me to login again. I never get the chat window. Thoughts?

<a href="https://teams.microsoft.com/l/chat/0/0?users="[email protected]" 'target='_blank'</a>

<a href="https://teams.microsoft.com/l/chat/0/[email protected] 'target='_blank'</a>
like image 298
Big L Avatar asked Nov 28 '25 18:11

Big L


1 Answers

both of your links are invalid. One of the following should work:

<a href='https://teams.microsoft.com/l/chat/0/0?users="[email protected]"' target="_blank">[email protected]</a>

<a href="https://teams.microsoft.com/l/chat/0/[email protected]" target="_blank">[email protected]</a>
like image 144
Hilton Giesenow Avatar answered Nov 30 '25 09:11

Hilton Giesenow



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!