Getting Started
OBJ Object
Properties
Methods
Events
MassSender Object
Properties
Methods
Events
Samples
|
RegisterKey Property
Registration code of ANSMTP Object Data Type: String
Remarks
The following string will be automatically appended in message body if this
property is incorrect.
If your application uses OBJ object of ANSMTP, your license code MUST be assigned to RegisterKey property of this object instance, otherwise the footer won't be removed. How long will the trial version expire? Usually, trial version would work with full functions in one or two month(s), after that some of the functions would not work properly in random. Remarks Before purchasing license from AdminSystem.NET, user can only use THIS Object for demo or evaluation use. Any use of ADS Object for commercial purpose is illegal and strictly prohibited. Usage Example: [ASP]
Dim oSmtp
Set oSmtp = Server.CreateObject("ANSMTP.OBJ")
'Before using OBJ, RegisterKey must be assigned.
oSmtp.RegisterKey = "your license code"
[Visual Basic]
Dim oSmtp As ANSMTP.OBJ Set oSmtp = new ANSMTP.OBJ 'Before using OBJ, RegisterKey must be assigned. oSmtp.RegisterKey = "your license code"[C#] OBJClass oSmtp = new OBJClass(); //Before using OBJ, RegisterKey must be assigned. oSmtp.RegisterKey = "your license code";[Visual C++]
IOBJPtr oSmtp = NULL;
oSmtp.CreateInstance("ANSMTP.OBJ");
//Before using OBJ, RegisterKey must be assigned.
oSmtp.RegisterKey = _bstr_t("your license code");
[JScript]
var oSmtp = new ActiveXObject("ANSMTP.OBJ");
//Before using OBJ, RegisterKey must be assigned.
oSmtp.RegisterKey = "your license code";
See Also
|
|