Skip to main content

Biztalk : Extracting Email Body from a POP3 email file

        private static void Testing_Extracting_Email_Body_From_An_Email_File()
        {
            CDO.IMessage msg = GetCdoEmail(@"C:\BizTalk_Dropzone\MW\OSM.CrewMail\Process\00 - Emails from somebody (No MIME)\New folder\{2413639D-9F69-4E7F-ADE3-A0835E8821EB}.eml");
            Console.WriteLine(msg.TextBody);
            msg = null;
        }

        // Microsoft CDO for Windows 2000 Library
        // Microsoft ActiveX Data Objects 6.0 Library
        private static CDO.IMessage GetCdoEmail(string sAnEmailFile)
        {
            CDO.Message msg = new CDO.Message();

            // load MIME into CDO
            using (FileStream stream = new FileStream(sAnEmailFile, FileMode.Open))
            {
                // read file into a byte stream
                byte[] emailData = new byte[stream.Length];
                stream.Read(emailData, 0, (int)stream.Length);

                // load byte stream data into an ADODB stream for CDO
                ADODB.Stream stm = new ADODB.Stream();
                stm.Open(
                    System.Reflection.Missing.Value,
                    ADODB.ConnectModeEnum.adModeUnknown,
                    ADODB.StreamOpenOptionsEnum.adOpenStreamUnspecified,
                    null, null);
                stm.Type = ADODB.StreamTypeEnum.adTypeBinary;
                stm.Write(emailData);
                stm.Flush();
                stm.SetEOS();

                // attach data source to the CDO object
                msg.DataSource.OpenObject(stm, "_Stream");
                stm.Close();
            }
            return msg;
        }

Comments

  1. Though it was working most of the time say 99%, I discovered an issue just yesterday, that this function could not extract the body of an email created by a Biztalk. I'll post soon a solution, the one I am think out is using a Chilkat since we do have a license for it and we used it way back then.

    \m/

    ReplyDelete

Post a Comment

Popular posts from this blog

Alidropship plugins - Da Vince Theme Subscription Fixed using MailChimp

From MailChimp Code: Wrecked the design on the UI <!-- Begin MailChimp Signup Form --> <link href="// cdn-images.mailchimp.com/embedcode/slim-10_7.css " rel="stylesheet" type="text/css"> <style type="text/css"> #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif;  width:450px;} /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.    We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ </style> <div id="mc_embed_signup"> <form action=" https://tester.us19.list-manage.com/subscribe/post?u=5b6e4f12343b19be8f09a2fef&amp;id=aeeef4383c " method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>     <div id="mc_embed_signup_scroll"> <label for...

Ubuntu 20.04 LTS | Installing OpenJDK 11 (LTS) JDK, JRE, HotSpot

https://adoptopenjdk.net/installation.html#linux-pkg ctrl + f => Linux RPM and DEB installer packages bboy@bboy-LE7450:~$ cat /etc/os-release | grep UBUNTU_CODENAME UBUNTU_CODENAME=focal bboy@bboy-LE7450:~$ sudo apt-get install wget apt-transport-https gnupg [sudo] password for bboy: Reading package lists... Done Building dependency tree       Reading state information... Done wget is already the newest version (1.20.3-1ubuntu1). wget set to manually installed. gnupg is already the newest version (2.2.19-3ubuntu2.1). gnupg set to manually installed. The following packages were automatically installed and are no longer required:   linux-headers-5.8.0-45-generic linux-hwe-5.8-headers-5.8.0-45   linux-image-5.8.0-45-generic linux-modules-5.8.0-45-generic   linux-modules-extra-5.8.0-45-generic Use 'sudo apt autoremove' to remove them. The following NEW packages will be installed:   apt-transport-https 0 upgraded, 1 newly installed, 0 to remove and 21 not upgraded. Need to get 1,...