Well, you have to be consistent. In your first code you’d opened with a single-quote or apostrophe, but then used double-quotes for the rest of the line.
'Support request from ' . $FirstName . ' in ' . $Dept;
"Support request from " . $FirstName . " in " . $Dept;
"Support request from $FirstName in $Dept";