by Quiksoft Corporation - 상품타입: Component / Add-In / ActiveX DLL / DLL / ASP
주의 : 이 제품정보에는 한글안내가 포함되어 있지 않습니다.
Communicate to e-mail servers over SSL connections. The plug-in interfaces with the SMTP, POP3 and IMAP4 objects to provide the SSL services. Integrating the SSL Plug-in into your application requires only a few lines of code.
일반 적인 소비자 가격은 하기에 표시되어 있습니다. 고객님의 할인가격은 표시 하시려면 로그인 해주시기 바랍니다.
| 주문 | ₩ 541,200 | 1 Developer License (Permits use by one developer and allows for unlimited royalty-free distribution of runtime) | 다운로드 (28 KB) | |
| 주문 | ₩ 975,000 | 2 Developer License (Permits use by two developers and allows for unlimited royalty-free distribution of runtime) | 다운로드 (28 KB) | |
| 주문 | ₩ 2,167,900 | Unlimited Developer License (Permits use by an unlimited number of developers within one organization and allows for unlimited royalty-free distribution of runtime) | 다운로드 (28 KB) |
| 주문 | ₩ 811,800 | 1 Developer License (Permits use by one developer and allows for unlimited royalty-free distribution of runtime) | 다운로드 (57 KB) | |
| 주문 | ₩ 1,462,500 | 2 Developer License (Permits use by two developers and allows for unlimited royalty-free distribution of runtime) | 다운로드 (57 KB) | |
| 주문 | ₩ 3,241,000 | Unlimited Developer License (Permits use by an unlimited number of developers within one organization and allows for unlimited royalty-free distribution of runtime) | 다운로드 (57 KB) |
| 주문 | ₩ 270,600 | 1 Developer License (Permits use by one developer and allows for unlimited royalty-free distribution of runtime) | 확인 | 다운로드 (29 KB) |
| 주문 | ₩ 487,500 | 2 Developer License (Permits use by two developers and allows for unlimited royalty-free distribution of runtime) | 확인 | 다운로드 (29 KB) |
| 주문 | ₩ 1,084,000 | Unlimited Developer License (Permits use by an unlimited number of developers within one organization and allows for unlimited royalty-free distribution of runtime) | 확인 | 다운로드 (29 KB) |
가격에는 ComponentSource의 기술지원 요금이 포함되어 있습니다. 또한 다운로드 판매를 하고 있는 상품의 대부분은 온라인 백업요금이 포함되어 있어서 구입날로부터 30일 이내에 새로운 버전이 발매된 경우 무료로 업그레이드해 드리고 있습니다. 모든 주문에 대해서 당사표준 계약조건 및 반품조건 의 내용이 적용됩니다. 다음의 경우,고객 서비스로연락하시기 바랍니다. (상기의 리스트에 게재되지 않은 대량의 라이센스나 구 버전 등의 라이센스 옵션이 필요한 경우)
일반 적인 소비자 가격은 상기에 표시되어 있습니다. 고객님의 할인가격은 표시 하시려면 로그인 해주시기 바랍니다.
Overview:
The EasyMail objects SSL Plug-in is a COM object that quickly enables the EasyMail Objects to communicate with SSL e-mail servers. The Plug-in COM object does not replace the EasyMail Objects, it simply interfaces with them to provide the SSL services. Integrating the SSL Plug-in into your application requires only a few lines of code.
The following example shows how to activate the plug-in for use with the EasyMail IMAP4 Object. The code in bold is the code required to support SSL.
i.e.Set objIMAP4 = CreateObject("EasyMail.IMAP4")
Set objSSL = CreateObject("EasyMail.SSL")
objIMAP4.MailPort = 993
objIMAP4.SSL = objSSL
IMAP4.Connect(strMailServer$)
... do IMAP4 stuff...
IMAP4.Disconnect
As the example illustrates, all that is necessary to SSL enable the EasyMail IMAP4 Object is to create an SSL object and assign it to the SSL property of the EasyMail MAP4 object.
Note: The SSL Plug-in object can be used with the EasyMail SMTP, POP3 and IMAP4 Objects.