|
RSS Feed - WebSphere MQ Support
|
RSS Feed - Message Broker Support
|
 |
|
Receiving html email at Email Input Node |
« View previous topic :: View next topic » |
Author |
Message
|
sathish.mani |
Posted: Fri Jun 19, 2015 10:46 am Post subject: Receiving html email at Email Input Node |
|
|
Newbie
Joined: 19 Nov 2014 Posts: 8
|
I am receiving an email at the email input node and i need to scan through the body of email and put some of those contents to the database.
CAST(InputRoot.MIME.Data.BLOB.BLOB AS CHARACTER ENCODING MQENC_INTEGER_NORMAL)
The above command casts the blob content of the email body to a string. The string is an html string and I dont know how to convert it to a plain text and get the contents of the body. When i send an email with email body as "hello world", the above command results in below html string.
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri","sans-serif";
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri","sans-serif";}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">Hello world<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</body>
</html>
Is there any way in message broker to parse the html file or convert it to plain text and the contents from it (hello world from above html string)??
I am new to message broker and I would appreciate any help |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Jun 19, 2015 11:05 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
The HTML document is the body of the email.
If you want parse and understand the HTML document, you will need to do that separately.
If you merely want to grab the "Hello World", or whatever the proper data in the message is - then you need to know how to parse the data you receive, or at least identify the pieces you need.
Perhaps you shouldn't send HTML formatted email. |
|
Back to top |
|
 |
|
|
 |
|
Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|