List of stripped HTML-Tags in Publication Mode

Hi,
I'm doing some research about the printing abilities of MDM PCM.
For this reason im searching for the HTML-Tags which are stripped out in the different Modes (especially Publication Mode)
I got a hind in "MDM Data Manger Reference Guide" on Page 521, that HTML tags are stripped out, but I can't find a List with the tags.
Regards
Christoph Kohler

Hi Christoph,
In terms of properly viewing HTMLs in the publication modes, there is actually a small piece of intermediary software that is available to our customers who use MDM to publish catalogs. It is called the HTML filter. Basically what it does is translate your HTMLs to tags that may be read by the publication modes. Tags that are supported by this filter are:
attributesStr << " border-top-style:solid; border-top-color:black; border-top-width:" << borderWidth << "pt;";
attributesStr << " border-left-style:solid; border-left-color:black; border-left-width:" << borderWidth << "pt;";
attributesStr << " border-bottom-style:solid; border-bottom-color:black; border-bottom-width:" << borderWidth << "pt;";
attributesStr << " border-right-style:solid; border-right-color:black; border-right-width:" << borderWidth << "pt;";
attributesStr << " font-style:italic;";
attributesStr << " font-weight:bold;";
attributesStr << " font-size:" << dFontSize << "pt;";
attributesStr << " font-family:" << fontFamily << ";";
attributesStr << " text-align:" << textAlign << ";";
attributesStr << " vertical-align:top;";
attributesStr << " vertical-align:middle;";
attributesStr << " vertical-align:bottom;";
attributesStr << " background-color:" << bgColor << ";";
attributesStr << " vertical-align:sub;";
attributesStr << " vertical-align:super;";
Hard coded table attributes are
cleansedHtmlStr += StringNL("<table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse\"");
The table cells support rowspan and colspan attributes.
<br/> is used for hard returns.
tags that are picked out of the source HTML are:
mainTags.push_back(StringNL("table"));
mainTags.push_back(StringNL("#text")); //meaning any text outside of the table
mainTags.push_back(StringNL("br"));
These three types of objects are represented in the filtered HTML with style attribute markup.
For example, #text is filtered to <span style = "font-family:Helvetica; font-size:7pts;"><p>my text</p></span>
The use of this filter is a temporary workaround. Development is planned to incorporate this process into the Data Manager so that the user will eventually have the option of creating HTML "variants" similar to the variants that can currently be created for images. This way, you will be able to store a version of the HTML code that is appropriate for both web and print.
Please contact me directly via email [email protected] for further information regarding this issue.
Hope this is helpful,
Neta

Similar Messages

  • Need some help - function that strips html tags

    Hey peeps,
    Need some guidance.
    I need help to write a function that will strip html tags from a string. So for examples if I have the following string:
    myString = "<p>This is a Paragraph</p>"; after runing the function it should return the string: "This is a Paragraph".
    Could anyone plz point me in the right direction on how to do this.
    Thanks,
    Zub

    System.out.println(myString.replaceAll("<[^>]++>\\s*", ""));

  • Oracle function to strip HTML tags in data

    Hi, may I know if there is any oracle function that can strip HTML tags from the data? I am currently using Oracle 9i. Therefore is unable to use the RegExp_Replace functionality provided by Oracle 10g.
    Any help will be appreciated.
    Thanks a lot!

    I found this function:
    function str_html ( line in varchar2 ) return
    varchar2 is
    x varchar2(32767) := null;Let's hope whoever uses this doesn't want to deal with large XML's.
    This question would have been better asked over in the XDB forum. All depends whether there is a schema available to describe the XML, what version of the database etc. With a schema, the schema could be registered into the Oracle 10g database and that used to create relational tables automatically, from where you can load in the XML files. Loads of information available on the XDB forum, most likely in the FAQ's on there.

  • Strip html tags from string & convert ampelsand charachters

    hello, i'm converting html into xml, and i need to convert html code & content into xml content, withouth the html tags ...
    so, for example, I strip this out of an html file:
    <A NAME="b_betreft"></A>STUDIEOPDRACHT "UITBREIDING VIPA NAAR MEERDERE SUBSECTOREN" HERVERDELING VASTLEGGINGS- EN VEREFFENINGSKREDIETEN VAN HET VIPA VOOR HET JAAR 1999 ONTWERPBESLUIT VAN DE VLAAMSE REGERING TOT HERVERDELING VAN BASISALLOCATIES VAN DE BEGROTING VAN HET VLAAMS INFRASTRUCTUURFONDS VOOR PERSOONSGEBONDEN AANGELEGENHEDEN VOOR HET BEGROTINGSJAAR 1999<A NAME="e_betreft">
    and i want to get rid of the "<A NAME="b_betreft"></A>" & "<A NAME="e_betreft">", are there classes that can do this ???
    probably there are, i know in php there are ..., how about java ???
    also i'll need to correct stuff like:
    Financi&euml;le => Financi�le
    Comit&eacute=>Comit�
    you see, then, i'm done, cool ...
    thanks dudessssss

    hello, i'm converting html into xml, and i need to
    convert html code & content into xml content,
    withouth the html tags ...Why didn't you continue to post in your other thread?
    http://forum.java.sun.com/thread.jspa?threadID=777660
    It's not nice to create multiple threads with the same question.
    Kaj

  • Stripping HTML Tags from a String

    What's the best way to remove html tags from a string (i.e. user input)?

    Can you give an example? You can do substring, if your passing spaces between pages you can do a trim to the variable. Also look at the indexOf(). Look at methods relating to java.lang.String.

  • Strip HTML by regexp?

    Hi,
    <br><br>
    In short: what's the regexp for stripping HTML tags?
    <br><br>
    I want to give users the option of some basic formatting when entering note fields. Most of the time a plain Text Area will suit their purposes, and displaying a Text Area with HTML Editor will just scare them.
    <br><br>
    (Sadly Text Area with HTML Editor items are not configurable - I really want to be able to switch off options like Justification, Foreground and Background. It's very irritating to be typing this post into the sort of item I want to provide!)
    <br><br>
    My prototype solution is a radio button which allows users to toggle between a plain Text Area and one with an Editor, preserving any text so far entered. Fine, I've got that far.
    <br><br>
    When the user switches from plain text to Editor, I just replace chr(10) with '<br>' and all is well.
    <br><br>
    When the user switches from Editor to plain text, I need to strip the HTML tags out.
    <br><br>
    I've googled far and wide for a regular expression to do it, but all the solutions I've found are in VB, Perl, Python or whatever.
    <br><br>
    Clearly the HTMLDB team have cracked it - I imagine that the Strip HTML option on reports is a regexp_replace - so would anyone please care to share?
    <br><br>
    Many thanks,
    <br>
    John D
    PS the commonly-cited expression '<(.|\n)*?>' doesn't work:
    <br><br>
    SQL> select regexp_replace('&lt;p>abc&lt;/p>','<(.|\n)*?>',null) str from dual;
    S
    -<br><br>
    PPS when I previewed this post, my linebreaks were lost, so I had to put them in manually.Odd.

    SQL> select regexp_replace('&lt;p&gt;abc&lt;/p&gt;','&lt;[^>]*&gt;',null) str from dual;
    STR
    abcseems to work for simple markup

  • Need a quicker way to strip most html tag while retaining a few.

    I have to strip the majority of non plane text (html, javascript, css) from a file whilst retaining the html tags I want.
    I have found many solutions for stripping ALL of the tags but not for stripping most whilst retaining a few.
    I first looked at regular expressions but I could not find a solution that didnt involve specifying all the tags I want removed insted of just listing all the tags I want to keep.
    I had something like this> str.replaceAll("\\<+?(^p|^th|^tr|^td|^h2|^h3|^h4|^li).+?\\>","") but it does not work.
    A regular expression would be great but I could not find one so I coded my own solution.
    The code below goes through each tag (both start and end tags) and strips it from the string if it is not a wanted tag.
    private void stripTags(int startIndex){
              int startArrow = 0;
              int endArrow = 0;
              while(true){
                   startArrow = text.indexOf("<", startIndex);
                   endArrow = text.indexOf(">", startArrow+1);
                   //reached EOF?
                   if(startArrow == -1 || endArrow == -1)   return; // return -1; 
                   if(text.substring(startArrow+1, startArrow+2).equals("/")){
                        //deal with the end tag
                        if(isWantedTag(text.substring(startArrow+2, startArrow+4))) {
                             startIndex = endArrow+1;
                        } else {
                             //remove the tag
                             text = text.substring(0, startArrow).concat(text.substring(endArrow+1, text.length()));
                             startIndex = startArrow;
                   } else {
                        //deal with the start tag
                        if(isWantedTag(text.substring(startArrow+1, startArrow+3))){
                             //remove tag parameters
                             if(endArrow-(startArrow+2) > 1) text = text.substring(0, startArrow+3).concat(text.substring(endArrow, text.length()));
                             startIndex = text.indexOf(">", startArrow+1)+1;
                        } else {
                             //remove the tag
                             text = text.substring(0, startArrow).concat(text.substring(endArrow+1, text.length()));
                             startIndex = startArrow;
    private boolean isWantedTag(String tag){
              return (tag.equals("p>") || tag.equals("p ") || tag.equals("th") || tag.equals("tr") || tag.equals("td") || tag.equals("h2") || tag.equals("h3") || tag.equals("h4") || tag.equals("li"));
         }The problem is that this code is taking ages to run. It takes about 10 seconds to run this method on a very large html file. I need a solution that takes only a 10th of that time.
    Does anybody have a regExp that could do the job or a more efficient version on my tag stripper above?
    Thanks in advance

    I suggest the following template:
    int copyFrom = 0;
    StringBuilder sb = new StringBuilder();
    while (copyFrom < text.length()) {
        int copyTo = findStartTag(text, copyFrom);
        sb.append(text, copyFrom, copyTo);
        copyFrom = findEndTag(text, copyTo + 1);
    text = sb.toString();where findStartTag(String s, int offset) returns the index of the next start tag in s, starting search at offset. It should return s.length() rather than -1 if nothing is found. findEndTag is similar.
    Sorry, that's obviously wrong since you don't want to remove everything between the tags, just the tags themselves. The basic idea is the same, though:
    int copyFrom = 0;
    StringBuilder sb = new StringBuilder();
    while (copyFrom < text.length()) {
        int copyTo = findStartOfTagToRemove(text, copyFrom);
        sb.append(text, copyFrom, copyTo);
        copyFrom = findEndOfTagToRemove(text, copyTo) + 1;
    text = sb.toString();Here, findStartOfTagToRemove finds the position of the '<' character of the next tag to remove.
    And findEndOfTagToRemove finds the position of the '>' character of that tag.
    Edited by: nygaard on Sep 30, 2008 10:39 AM

  • Stripping all HTML tags from a CLOB

    Hi all,
    Running Oracle 9.2.0.8 on AIX...
    We have a table which stores HTML document fragments in a clob. I have a requirement to convert these to plain/text (strip all HTML tags) for sending in a plain/text email body.
    I have read the following solution from Tom Kyte's site:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:25695084847068
    Basically creating an Oracle text index on the CLOB column and calling ctx_doc.filter with "plaintext" parameter set to true.
    I noticed in Tom's example, he uses the default filter, which based on the docs, is NULL_FILTER, which applies no filtering. I have tried his example in my dev box, creating the text index on the CLOB column with no parameters.
    The call to ctx_doc.filter did not filter the html at all. I re-created the index and specified the INSO_FILTER and the filtering was done. I was under the impression that INSO_FILTER was for filtering binary content to plaintext...
    create table filter ( query_id number, document clob );
    create table demo
      ( id            int primary key,
        theclob       clob
    create index demo_idx on demo(theClob) indextype is ctxsys.context;
    SET DEFINE OFF;
    Insert into DEMO
       (ID, THECLOB)
    Values
       (1, '<html><body><p>This is a test of <strong>ctx_doc.filter</strong> and plaintext filtering.</p></body></html>');
    COMMIT;
    exec ctx_doc.filter('demo_idx',1, 'filter',1, true);The above code does not convert the html to plaintext...
    Now re-create with the index with INSO_FILTER
    drop index demo_idx;
    create index demo_idx on demo(theClob) indextype is ctxsys.context parameters ('filter ctxsys.inso_filter');
    exec ctx_doc.filter('demo_idx',1, 'filter',1, true);Above scenario returns string "This is a test of ctx_doc.filter and plaintext filtering."
    The ORacle documentation doesn't specify any special filter parameter that needs to be set... just wondering if I'm missing soemthing here... or better yet, if there is a better solution to my problem. ;-)
    Thanks
    Stephane

    The difference between what you did and what Tom Kyte did is that you created your index on a clob column and Tom created his index on a blob column. What I don't know is why that makes a difference. I have demonstrated below with one blob column and one clob column, one index on the blob and one index on the clob, using the same code on both, with different results.
    SCOTT@orcl_11gR2> create table filter
      2    (query_id  number,
      3       document  clob)
      4  /
    Table created.
    SCOTT@orcl_11gR2> create table demo
      2    (id       int primary key,
      3       theblob   blob,
      4       theclob   clob)
      5  /
    Table created.
    SCOTT@orcl_11gR2> create index demo_blob_idx
      2  on demo (theblob)
      3  indextype is ctxsys.context
      4  /
    Index created.
    SCOTT@orcl_11gR2> create index demo_clob_idx
      2  on demo (theclob)
      3  indextype is ctxsys.context
      4  /
    Index created.
    SCOTT@orcl_11gR2> insert into demo values
      2    (1,
      3       utl_raw.cast_to_raw (
      4         '<html>
      5            <body>
      6              <p>
      7             This is a test of
      8             <strong> ctx_doc.filter </strong>
      9             and plaintext filtering.
    10              </p>
    11            </body>
    12          </html>'),
    13       '<html>
    14          <body>
    15            <p>
    16              This is a test of
    17              <strong> ctx_doc.filter </strong>
    18              and plaintext filtering.
    19            </p>
    20          </body>
    21        </html>')
    22  /
    1 row created.
    SCOTT@orcl_11gR2> exec ctx_doc.filter ('demo_blob_idx', 1, 'filter', 1, true)
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> exec ctx_doc.filter ('demo_clob_idx', 1, 'filter', 2, true)
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> select id, utl_raw.cast_to_varchar2 (theblob), theclob from demo
      2  /
            ID
    UTL_RAW.CAST_TO_VARCHAR2(THEBLOB)
    THECLOB
             1
    <html>
            <body>
              <p>
                This is a test of
                <strong> ctx_doc.filter </strong>
                and plaintext filtering.
              </p>
            </body>
          </html>
    <html>
          <body>
            <p>
              This is a test of
              <strong> ctx_doc.filter </strong>
              and plaintext filtering.
            </p>
          </body>
        </html>
    1 row selected.
    SCOTT@orcl_11gR2> select query_id, document from filter
      2  /
      QUERY_ID
    DOCUMENT
             1
    This is a test of ctx_doc.filter and plaintext filtering.
             2
    <html>
          <body>
            <p>
              This is a test of
              <strong> ctx_doc.filter </strong>
              and plaintext filtering.
            </p>
          </body>
        </html>
    2 rows selected.
    SCOTT@orcl_11gR2>

  • Stripping selective HTML tags?

    Anyone have a "best practice" for stripping (or allowing) certain HTML
    tags on an insert/update transaction? I'm using TinyMCE in my forms
    which does this automatically, but if a user has javascript disabled
    they can bypass the TinyMCE stripping and still submit text with all
    sorts of dangerous HTML code.
    Is there a preferred method anyone has?
    Alec
    Adobe Community Expert

    Hi Alec,
    I´d first suggest to define all your "disallowed stuff" rules in an external function, which basically uses preg_replace (or str_replace in simpler cases) plus some regular expressions to replace whatever patterns with '' -- in addition you could also integrate the strip_tags function right here, like this:
    function block_content($what){
    $what = strip_tags($what, '
    $what = preg_replace('/<\/{0,1}font[^>]*>/i', '', $what);
    $what = preg_replace('/^
    <\/p>/i', '', $was);
    $what = preg_replace('/^(?:
     <\/p>)/im', '', $what);
    $what = preg_replace('/style="BACKGROUND:.*"/i', '', $what);
    return $what;
    But I'd like to clean it when it's actually written to the database
    rather than when I'm pulling it out
    please try with establishing as Custom Trigger (type: BEFORE) and clean the contents by applying the "block_content" function to $tNG->getColumnValue("columnname"):
    $tNG->setColumnValue("columname", block_content($tNG->getColumnValue("columnname")));
    it´s a little experimental, as I haven´t done that before, but I think it should work ;-)
    Even so, users can still insert dangerous attributes
    well, good luck with trying to capture all possible dangerous stuff in this function :-)
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • HTML tag list

    Hello,
    Any one knows where I can get a list of HTML tags supported in JTextPane or JEditorPane? This will be very useful to avoid coding unsupported HTML contents.
    Thanks in advance.

    hi!
    have you seen this class
    javax.swing.text.html.HTML.Tag?
    :)

  • HTML tag strip (email parsing use case)

    Have you guys come across the requirements of parsing a HTML message, lets say an email, and convert into text?
    The most common use case would be email parsing, remove all the HTML tags and use as string.
    It has to remove the entire tags, with attributes, for example tables, with TRs and TDs with properties, must be removed. The BR converted into carriage return, etc?
    Cheers,
    Renato Fichmann

    Derek,
    In my situation, I'm triggering a process from an email. I need to extract information out of this email but it's not formatted as XHTML. I don't know there's an easy way to preprocess the email first before trying to disect it.
    I'm working on an alternative solution but that relys on the people sending me the email to grant direct access to their systems.
    Hopefully there'll be some funky string functions like this in upcoming releases??
    Ryan

  • Help needed in adding effects of certain HTML tags in Flex spark Richtext

    I want to apply the effects of the following HTML tags/ attributes, in my HTML text rendered in Flex Spark Richtext Component.
    Superscript - <sup>
    Subscript - <sub>
    Blockquotes - <blockquotes>
    Ordered Lists - <ol><li>
    Unordered List - <ul><li>
    Horizontal Rule - <hr>
    Direction Attribute for <p> - <p dir="rtl">Hello</p>
    Background Color for <font>
    I have observed that the above tags have no effect in RichText. Is this a limitation?
    Any solutions, tweaks and tricks will be appreciated...
    Thanks,
    Mangirish

    check this out . this should be able to answer you question.
    http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_04.html
    Miguel

  • HTML Tags not moved in PDF

    Hello,
    I would like to print a report as a PDF and use the BI Publisher.
    This functions so far also quite well, only I have the problem
    I pass a HTML formatted text from a field CLob
    and with the PDF output the HTML tags are not moved.
    In the PDF document the HTML tags stands instead of a formatted heading,
    e.g.
    <*h1> This is the heading <*/h1> (without stars)
    What I must set / make with it I also a formatted one
    Heading agrees?
    Somebody an idea?
    Edited by: user10460383 on 14.09.2009 06:16
    Edited by: user10460383 on 14.09.2009 06:17

    True - a PDF isn't going to support HTML encoding. HTML will just be seen as more text, and displayed that way.
    You can strip out HTML tags fairly easily with a regular expression in your query SQL - this simply looks for text between < and > characters, and removes it. That should work for basic HTML formatting tags, but it isn't 100% (it won't handle <script> blocks correctly, for instance).
       select regexp_replace(myHTML, '<[^>]*>', '') as myText
       from myTable... Implementing a method to convert the HTML formatting into RTF formatting is also possible, but not a trivial task - you'd effectively have to replace each HTML tag with an RTF equivalent -- eg, replace <H1> with the RTF code to make a larger font, replace </H1> with RTF code to return the font to normal... etc...

  • Unable to handle html tags in BI publisher trial edition

    Hi,
    I am very new to BI publisher and having issues reading rich text field from database and reading into the report.
    BI Publisher - 11.1.1.6 trial edition
    test case: I have a rich text field that stores html tags in the database. I have created a data model using sql query and am selecting rich text field from the database. When trying to display that field on the report in BI publisher I get the html tags.
    I even tried Tim Dexter solution mentioned in the below blog but now when I run the report nothing shows up for that rich text field in the report. I am not sure if I am missing any steps while using html2fo.
    https://blogs.oracle.com/xmlpublisher/entry/html_in_xml_support
    Please help since I am struggling with this for past few days. Also below is the sample xml data where element "PROJECT_DETAILS" is the rich text field.
    Thanks,
    Saurabh.
    <G_2>
    <EMPLID_1>0001</EMPLID_1>
    <PROJECT_DETAILS><![CDATA[<p class="Resume-JobSum">Managed and led twenty members technical team to successfully complete development on time. Took over management of behind schedule development and provided direction and discipline to complete development cycle on time.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Improved delivery by prioritizing development items.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Improved efficiency by removing dependencies and delegating work.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Improved cost management by controlling over time hours on the team.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Provided infrastructure planning for support and future phases.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:27.0pt;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Planned and Managed change management and migration process.</p><p></p>]]></PROJECT_DETAILS>

    are u using an RTF template?
    u need to use
    <?html2fo: COLUMN_NAME?>
    instead of <?COLUMN_NAME?> in the RTF template
    http://docs.oracle.com/cd/E23943_01/bi.1111/e22254/create_rtf_tmpl.htm#CHDCEEIJ
    Edited by: anupma.s on Feb 21, 2013 11:12 AM

  • Issue with HTML tags visible in Outlook emails

    Hi everyone, I'm having an issue with a website I'm working on.
    On our site, we have a page that generates emails after certain events occur. These are sent to a forwarding address on our mail server, which is then sent to several users on our mail server. These users have their accounts set up in Outlook (one in 2007,
    one in Mac 2011).
    We're are having an issue where these emails are displaying in Outlook with all of the HTML tags in the email visible. One of the users spoke to Microsoft support, and they remoted in and went through their Outlook settings and were not able to find any issues
    there.
    This issue is not global exactly. When one of the users added their email to their iPhone, the email displayed correctly. We added a Gmail account and my work account (which I also access through Outlook) to the forwarding list, and it displayed correctly in
    both. When we view these emails in the server's webmail client, the emails display fine. The issue seems to be with some discrepancy between Outlook and our email server.
    I spoke to our webhost about the issue, and they swore up and down the issue had nothing to do with them, and that it had to be an Outlook issue. I've had several professional web developers analyze the code that creates these emails, and they found nothing
    wrong with it. Something that several of my colleagues and our webhost suggested is that the issue could be with the email headers. This is the header for the email, as viewed through Outlook:
    Return-Path: <[email protected]>
    X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on clubcrown.com
    X-Spam-Level: *
    X-Spam-Status: No, score=1.5 required=7.0 tests=HTML_MESSAGE,MIME_HTML_ONLY,
    NO_DNS_FOR_FROM,NO_RELAYS autolearn=no version=3.3.1
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: by x.com (Postfix, from userid 30)
    id 50F7123D9E; Tue, 11 Feb 2014 14:20:00 -0500 (EST)
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: by x.com (Postfix, from userid 10000)
    id EC28323DA2; Tue, 11 Feb 2014 14:19:58 -0500 (EST)
    To: [email protected]
    Subject: A wholesale order has been placed
    X-PHP-Originating-Script: 10000:thanks.php
    MIME-Version: 1.0
    Any help would be greatly appreciated. Let me know if more information is needed. Thank you.

    Glad to hear that you have found the solution. And thank you for sharing the solution here, it will be helpful to other community members who have same questions.
    Cheers,
    Steve Fan
    TechNet Community Support

Maybe you are looking for