message
9 TopicsCalling adaptive card from the channel message level using the button (Message created from Tab).
Hello, I am struggling with one problem, I am adding a message to a channel using a Tab I created, I would like the message to contain a button that would trigger an adaptive card popup. This popup would need to dynamically fetch data from an external API. For any answers, thank you1.2KViews0likes4CommentsMail: Problems Get MIME content of a message
Hello, I wrote a program in Java that monitors an inbox and retrieves new incoming emails and, after successful processing, moves them to a Processed folder. For a few emails, retrieving the MIME content of a message fails and they are moved to an error directory. If I move the emails back to the inbox by hand/in Outlook, they are processed normally. If I move them programmatically or via a Prower Automate flow, the problem remains and they cannot be processed. Ideas? Error: java.util.concurrent.ExecutionException: java.nio.charset.MalformedInputException: Input length = 1 at org.apache.hc.core5.concurrent.BasicFuture.getResult(BasicFuture.java:72) at org.apache.hc.core5.concurrent.BasicFuture.get(BasicFuture.java:85)355Views0likes0CommentsSend a message to all users (like a broadcast)
I would like to inform our users about very urgent things (ie please disconnect from the system), and the best way to do that would be to send a chat message to all of them maybe via powershell or graph api? Is there currently a way to do that? I know I could create an ORG wide group and post in there...Solved195KViews1like20CommentsWeblink of Message object doesn't work anymore with 'Window.open()' since yesterday
Hello, The 'weblink' property with url to an Outlook message (created by Mail API) was changed in behaviour since yesterday? If I use the Outlook weblink for a popup with javascript 'window.open(...)' for example, the returned object references no longer for the popup because of redirect maybe? Example: let webUrl = "https://outlook.office365.com/owa/?ItemID=..."; let otherWindow= window.open(webUrl, 'otherWindowCtx', "popup"); onst interval = setInterval(async () => { if (otherWindow.closed) { console.log("window closed"); clearInterval(interval ); } }, 1000); The 'otherWindow'.closed is immedialty set to true and the object references are empty but the window with Outlook mail is still open. And this is only happening with Outlook urls, not other sites. And again, this is happening since yesterday without code changes.511Views0likes0CommentsHow to send a stream video address in a message?
Greetings, I want send message Microsoft Stream video link. In Teams App, paste the MS Stream Video address into the message entry window. This image is automatically created. I want to send this using Graph API. I tried with https://docs.microsoft.com/en-us/graph/api/resources/attachment?view=graph-rest-beta, but I failed with message that id is not present in body. var channel = await graphClient.Teams[pClassId].PrimaryChannel .Request() .GetAsync(); var chatMessage = new ChatMessage { Body = new ItemBody { ContentType = BodyType.Html, Content = "" }, Attachments = new List<ChatMessageAttachment>() { new ChatMessageAttachment { ContentType = "reference", ContentUrl = streamurl } } }; resultChatMsg = await graphClient.Teams[pClassId].Channels[channel.Id].Messages .Request() .AddAsync(chatMessage); How can I implement it? Thank you for any help.1.4KViews0likes1Comment