var fDesc=new Array();
fDesc[0] = "EASendMail SMTP component allows developers to deliver required reliability and functionality email applications in VB6, ASP, C++, C#, VB.NET, JScript.NET, ASP.NET or other .NET framework/COM programming languages more easily. Many advanced features are supported including S/MIME, DNS MX record lookup to send email without specified SMTP server.
Features:
- Support SMTP commands: HELO, MAIL FROM, RCPT TO, DATA, QUIT.
- Support ESMTP commands: EHLO, AUTH LOGIN, AUTH NTLM, AUTH CRAM-MD5.
- Support Normal recipient, carbon copy recipient and blind carbon copy recipient.
- DNS lookup to send email without specified SMTP server.
- Test validity of email address.
- Support asynchronous mode and event driving.
- Support Text/Html/Alternative body.
- Support multiple attachments and embedded pictures.
- Import text/html to email body from specified file/URL.
- Add customized headers in email.
- Save email as specified file.
- Load email file for sending.
- Mail Queuing with EASendMail Service.
- Support Socks4/Socks5/Http proxy connection.
- DomainKeys and DKIM signature.
- Exchange Web Service and WebDAV.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}