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>
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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With