Hi!
I have a simple push notification for a new comment:
PowerAppsNotification.SendPushNotification(
{
recipients: ForAll(
Distinct(
Filter(
CommentsDB,
Caseid = selectedId
),
Email
),
Result
),
message: "New comment in " & varToT & " id: " & Text(
varNewTicket.ID,
"0000"
) & Char(11) & " Title: " & varNewTicket.Title & "",
openApp: true
}
)
In my phone notifications appear correctly:
But in PC I see only this:
What I need to do so that I could see full messages in my notification feed?

Report
All responses (
Answers (