I have created a feeback form that was working fine until recently, about the same time as we upgraded to on-prem 3.284.3.
From the form I generate an email.: the email comes through but the main part, the contents of where user's put there commentsis now coming through as blank.
I have tried putting other thing after {{ textAreaHeader.value }} and they come through, e.g. I also added {{ textAreaHeader.id }}. It is just the {{ textAreaHeader.value }} that now does not populate in the email - when I put my mouse over it, I can see it has a value.
The intellisense can often times be finicky on what it shows. if you right click on the component and click “view state” you get an 100% accurate view.
Additionally, I’m not sure what the Email query returns after you trigger but it could be worth taking a look and seeing what value gets sent to triage the source of the issue.
My gut instinct is that you’re clearing textAreaHeader before the Email trigger is complete. I would recommend using a form if that’s the case and clearing the form on successful submit as this is a much safer and consistent practice.
This was a bit rambling so let me know if anything isn’t clear!
Have you spent any additional time investigating this, @klautier? I think @DavidD's suggestion that there may be a race condition at play is a good one - are you currently clearing the input or closing the modal at the same time that you're triggering the Email query?