Email Validation Component Help:
Overview
Getting Started
Email Verifier Object Properties
Result Object Properties
FAQ
Email Validation Component is your powerful solution for e-mail
addresses and mail lists verifying. Email Validation Component connects directly to SMTP servers and
checks it email account exists. Nothing is sent to the recipient.
Sample Code:
EmailVerifierComponent.EmailVerifier ver =
new<
EmailVerifierComponent.EmailVerifier();
IResult result = ver.Verify(textBoxEmail.Text);
textBoxResult.Text = result.Name;
textBoxDescription.Text = result.Description;
textBoxLog.Text = result.Log;
|
DomainForHELO |
Domain for HELO command |
|
MailFROM |
Used in MAIL FROM command |
|
MaxThreadsCount |
Threads Pool Size |
|
PrimaryDNS |
Primary DNS Server |
|
ProxyHost |
Proxy Server IP Address |
|
ProxyPassword |
Proxy Server Password |
|
ProxyPort |
Proxy Server Port |
|
ProxyUser |
Proxy Server User |
|
SecondaryDNS |
Secondary DNS Server |
|
Tasks |
Maintain links to all processing tasks |
|
Timeout |
Task Timeout |
|
UseProxy |
Use Proxy Server |
|
Code |
Status Code |
|
Description |
Status Description |
|
Log |
SMTP Log |
|
Name |
Satatus Name |
|
SMTPCode |
SMTP Server Reply Code |
|
SMTPMessage |
SMTP Server Reply Message |
Socks Proxy:
Some ISP are blocking the SMTP port (25), meaning that you can not contact
a mail server and verify email address. In this case you have to use the
external Socks Proxy Server. Configure Socks Proxy Server on "SOCKS Proxy" Page.
We pay your attention - you should use just SOCKS (4/4a/5, usually port 1080) proxy server, not
HTTP proxy server (port 3128 or 8080), which usually is used in Internet Explorer.
The program automatically determine your DNS settings in your current
configuration of Windows.
|