The following is my preferred way to assign a multi-line string to a variable (I think it looks nice).
read -r -d '' my_variable << \
_______________________________________________________________________________
String1
String2
String3
...
StringN
_______________________________________________________________________________
The number of underscores is the same (here 80) in both cases.