Web Features Learning Mode

You have been given the following code snippet:

<?php
 $string = <<<XML
 <?xml version="1.0" encoding="ISO-8859-1"?> 
 <email> 
 <to>jenny@ucertify.com</to> 
 <from>john@ucertify.com</from> 
 <heading>Technical issue in Linux OS</heading> 
 <body>There is a technical issue in my Linux system. Please Fix it. </body>
 </email> 
 XML;

 <Write code here> 
  ?>

Which of the following code snippets will you write to print the XML content?