I have an application that sends chat message like so:
const currentUserId: any = await msGraphProvider.getCurrentUserId();
const userIdToSendMessage: any = await msGraphProvider.getUserId(dpcRequest.SendQuestionsTo.EMail);
const chatOfUser: any = await msGraphProvider.createUsersChat(userIdToSendMessage, currentUserId);
const result: any = await msGraphProvider.sendMessage(chatOfUser, text);
the text variable should have few new lines in it but anything I send is disregarded.
I tried
but it is not HTML
also \r\n\r\n , \n but it is ignored too
Any Idea how to format new lines? Thanks