© 2026 Hedgehog Software, LLC
https://demy-ia.daily.co/frfe
return $@" <html> <head> </head> <body> <p>Here are the meeting details:</p> <br> <!-- Add a line break --> <p><strong>Meeting Name:</strong> {roomName}</p> <p><strong>Teacher Name:</strong> {userName}</p> <p>Click the button below to join the meeting:</p> <p><a class='button' href='{meetingLink}'>Join</a></p> </body> </html>";
if(DeviceInfo.Platform == DevicePlatform.WinUI) { string protocol = "demy-ia"; meetingLink = $"{protocol}://{roomName}"; } else { meetingLink = $"{Constants.BASETTING_URL}{roomName}"; } var body = GenerateHttmlTemplate(roomName, meetingLink, user!.Name, dateTimeMeeting); ...
<uap:Protocol Name="demy-ia"> <uap:DisplayName>demy-ia</uap:DisplayName> </uap:Protocol>
demy-ia://dew