Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6575903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:26:40+00:00 2026-05-25T15:26:40+00:00

So I have a PHP script which takes in piped emails, appends a footer

  • 0

So I have a PHP script which takes in piped emails, appends a footer to them and passes them on.

But if someone sends an email which is already in HTML format it just inserts the entire html email into the body of a new html document.
I need a script which will (if the email is already in HTML) take off the html, head and body tags leaving the original email.

I.e. if someone sent an email

<html><body>This is my awesome input email which is <strong>already</strong> in HTML</body></html>

It is parsed by my script to become

<html><body><html><body>This is my awesome input email which is <strong>already</strong> in HTML</body></html></body></html>

How can I get it to take off the HTML structure if it exists?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T15:26:40+00:00Added an answer on May 25, 2026 at 3:26 pm

    I don’t think it’s possible to detect if the html element is present when working with DOMDocument and HTML because loadHTML() will add its own html element if it is not present.

    The code below will just always return the serialised HTML of the body element.

    $dom = new DOMDocument;
    
    $dom->loadHTML($html);
    
    $body = '';
    
    foreach($dom->getElementsByTagName('body')->item(0)->childNodes as $child) {
        $body .= $dom->saveHTML($child);
    }
    

    CodePad.

    Alternatively, you could treat the HTML as XML and then detect it, but without a documentElement you may have problems. I solved that by adding a dummy documentElement, though it’s a bit clunky (I’d probably stick to the above code myself).

    // Need a documentElement so wrap it with some generic garbage.
    $html = '<garbage>' . $html . '</garbage>';
    
    $dom = new DOMDocument;
    
    $dom->loadXML($html);
    
    if ($dom->getElementsByTagName('html')->length) {
       ...
    }
    

    CodePad.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have PHP script which takes some file (FLV for example) and returns it
I have a php script which takes a relative pathname via $_GET , reads
I have a PHP script which opens a socket connection(using fsockopen) and takes about
I have a php script which accesses a MSSQL2005 database, reads some data from
I have a PHP script which executes a shell command: $handle = popen('python last',
I have a PHP script that sends critical e-mails. I know how to check
I need a PHP script which takes a URL of a web page and
I have a small php script which allows me to upload image file on
I have a function which sends specified form data to a php processing page.
I have a PHP script which successfully decodes a JSON string into a PHP

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.