Subject: Email Bounce issue with particular sentence
Date: 2018-05-07 04:19:21
From: Manish Kumar
Source: email-bounce-issue-particular-sentence
----------------------------------------------------------------------

We are using your Mail expert bounce inspector to check spam mails.
When we try to add "User should be able to register and gain full access to the system" 
in subject or body the mail get bounce true. I dont think there is any issue in this
sentence and we need to process the email.The code we are using to check bounce mail is 
below.

        private bool IsUselessEmail(MailMessage MailMessage)
        {

            if (MailMessage.Headers != null && (MailMessage.Headers["X-Autoreply"] != null || MailMessage.Headers["X-Autorespond"] != null || (MailMessage.Headers["auto-submitted"] != null && MailMessage.Headers["auto-submitted"].Value.ToString() == "auto-replied")))
                return true;

            BounceInspector inspector = new BounceInspector();
            BounceResult bResult = inspector.Process(MailMessage);

            if ((bResult != null && bResult.BounceType != null && bResult.BounceType.Code != BounceType.AutoReply) && bResult.Identified)//it is bounced email
                return true;
            else
                return false;
        }

It returns true.

----------------------------------------------------------------------

Note: This question has been asked on the Q&A forum of Thang Dang's fraudulent ComponentPro brand
If you purchased anything from ComponentPro, you have been scammed. Contact the payment processor
who sold you the license and ask for your money back.

Back to ComponentPro Q&A Forum Index