How to add line breaks to $email[‘body’] when using auto_core_update_email hook

Don’t use single quotes with escape sequences like \r, \n and so on. Use double quotes:

$a="Hello, " . "\n";
$b = "Good Bye, \n";

See Double quoted strings in PHP.