Sends an email message as a reminder to each receiver indicating the Cartella license is about to expire. The number of days remaining is included in the body.

Namespace: Cartella.Interfaces
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
bool LicenseAboutToExpireNotice(
	MailReceiverInfo[] receivers,
	ILicenseInfo licenseInformation
)
Visual Basic
Function LicenseAboutToExpireNotice ( _
	receivers As MailReceiverInfo(), _
	licenseInformation As ILicenseInfo _
) As Boolean
Visual C++
bool LicenseAboutToExpireNotice(
	array<MailReceiverInfo^>^ receivers, 
	ILicenseInfo^ licenseInformation
)

Parameters

receivers
Type: array<MailReceiverInfo>[]()[][]
An array of email addresses
licenseInformation
Type: Cartella.Interfaces..::..ILicenseInfo
License information, used to determine expiration date

Return Value

True if email goes out successfully, false otherwise.

See Also