Site Map Contact Us Home
E-mail Newsletter
Subscribe to get informed about
Clever Components news.

Your Name:
Your Email:
 
SUBSCRIBE
 
Previous Newsletters
 




Products Articles Downloads Order Support
Customer Portal      

Bounce Checker

Features | Detailed Description

The Bounce Checker is a component from the Clever Internet Suite library.
This component is used to scan a POP3 mailbox for bounced messages.

Available in .NET, VCL and ActiveX editions.

Features:

  • Check mailbox via POP3 protocol
  • Scan downloaded messages in raw format
  • Detailed information about bounced emails 
  • Customize key phrases by using of which the message is treated as bounced
  • Free one year upgrades and support

Check mailbox for bounced messages in just few lines of code

You can check interested mailbox for bounced messages by connecting and scanning the POP3 account or scan message content in raw format.

Delphi
emails.Add('email1@domain.com');
emails.Add('email2@domain.com');

msg.LoadFromFile('message.eml');

checker.CheckBounced(emails, msg);
 
ShowMessage(checker.BouncedEmails.All.Text);
ShowMessage(checker.BouncedEmails.TemporaryFailed.Text);

C#
emails = new string[] { "email1@domain.com", "email2@domain.com" };

pop = new Pop3();
pop.Server = "mail.host.com";
pop.UserName = "user";
pop.Password = "secret";

checker.CheckBounced(emails, pop);
 
MessageBox.Show(checker.BouncedEmails.All.ToString());
MessageBox.Show(checker.BouncedEmails.TemporaryFailed.ToString());

Send validation email message

You can send customizable validation email to tested mailbox via SMTP protocol.

Delphi
emailsToValidate.Add('email1@domain.com');
emailsToValidate.Add('email2@domain.com');

checker.Send(emailsToValidate, 'sender@domain.com');

C#
emailsToValidate = new string[] { "email1@domain.com", "email2@domain.com" };

checker.Send(emailsToValidate, "sender@domain.com");

Complete Delphi and C# source code

When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.

Interested?

 

    Copyright © 2000-2024