Note auto display on future date

I am using Calendar and templates plugin.

What I intent to is, in daily calendar notes, I jot down various meetings. Some meeting might need me to cross reference to future date. It is not todo item, it is a paragraph of notes that will be handy for my next meeting.

Is there a way to put certain syntax in the today’s note, such that the paragraph automatically shows up on the scheduled date.

For eg:
Today’s date: 20205-07-05
Meeting client x - immediate requirement for _____, We need to connect with supplier. Next meeting with client x 2025-07-07

Now I want the above statement to show up on the calendar note when created on 2025-07-07.

Please provide me the user friendly solution. I do not want to write syntax or complex lines of code in or after the meeting. And todo / tasks is not an option.

I guess, we could tailor a solution involving the Dataview plugin and the requirement to jot down the special lines you want to be automatically copied into your future daily notes as list items instead of paragraphs, if you’re ok with that?

This would look something like, you add a section to your daily note template, let’s call it Today’s reminders containing following dataview query to search for list items with that special string YYYY-MM-dd of the actual date of the daily note.

TABLE WITHOUT ID
file.link AS from, L.text AS reminder
FROM "PATH/TO/YOUR/DAILY/NOTES"
FLATTEN file.lists AS L WHERE contains(L.text, "{{date:YYYY-MM-DD}}")