LicenseKey Property
Sets the license key for MailBee S/MIME component. This property must contain the correct license key value in order to successfully use the SMIME object.
Value Type: | String | |
Parameters: | None | |
Remarks: |
To check if the correct license key value was assigned, the developer can use the Licensed property. |
Usage example:
' This example checks if the specified license key is valid. Dim objSMIME ' Using Visual Basic to create the SMIME object Set objSMIME = CreateObject("MailBee.SMIME") ' Using ASP to create the SMIME object 'Set objSMIME = Server.CreateObject("MailBee.SMIME") ' Specify MailBee license key objSMIME.LicenseKey = "put your license key here" ' Check if the specified license key is valid If objSMIME.Licensed Then ' In ASP use Response.Write instead of MsgBox MsgBox "SMIME object is ready for use" End If
See Also:
Copyright © 2002-2024, AfterLogic Corporation. All rights reserved.