How can I make a variable subject of an email using PL/SQL?
Currently, I am using a constant string as the subject:
'Open Action items for review'
I need to modify it to:
'Open Action items for review Day 5' -> If the action item is on 5th day since opening.
Or:
'Open Action items for review Day 10' -> If the action item is on 10th day since opening.
How can I accomplish this task?