First take a look at this question: Bash or GoogleCL: new line in a string parameter
I want to add a variable ${date} into the \"summary\" now:
googl
Rather than attempting to expand a variable inside a single quoted string, the typical solution is to concatenate single and double quoted strings. In other words:
'Today is'"${date}"'. Poor' ...