loadHTML(file_get_contents($submissionURL)); $body = $html->getElementsByTagName('body')->item(0); //get html code after the body tag foreach ($body->childNodes as $child){ $html->appendChild($html->importNode($child, true)); } //make the table responsive so it appears nicely on email $body = $html->getElementsByTagName('table'); foreach ($body as $width) { $width->setAttribute('width', '100%'); } $body = $html->saveHTML(); //Send email @mail($emailto, $subject, $body, $headers); ?>