Email Bounce issue with particular sentence

0
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.
 
asked 5/7/2018 4:19:21 AM
add a comment

1 Answers

0
We would recommend using AddBounceSignature method as shown in this topic: [http://doc.componentpro.com/ComponentPro-BounceInspector/Adding-a-custom-signature][1]. The example is self-explanatory. Let us know if you have any issues. [1]: http://doc.componentpro.com/ComponentPro-BounceInspector/Adding-a-custom-signature
 
answered 5/7/2018 4:20:20 PM
  Perhaps it's not clear what we're asking. The problem is that Bounce Inspector is incorrectly detecting legitimate emails as bounced emails. To reproduce, simply send an email with a subject and body with following content (Remove quotes) "User should be able to register and gain full access to the system" I'm sorry but I don't understand how adding a custom signature will resolve this issue. I'm not trying to detect custom content as bounced message; rather I'm trying to get Bounce Inspector to NOT Mark this email as bounce. Please suggest. Manish Kumar 5/8/2018 7:04:27 AM
  Any Update? Manish Kumar 5/10/2018 7:46:56 AM
add a comment

Your Answer

Not the answer you're looking for? Browse other questions tagged mail-expert or ask your own question.