Sends an email to the receiver with the user's new password in the body.

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

Syntax

C#
bool NewPasswordNotice(
	MailReceiverInfo receiver,
	string userName,
	string newPassword,
	string loginLink
)
Visual Basic
Function NewPasswordNotice ( _
	receiver As MailReceiverInfo, _
	userName As String, _
	newPassword As String, _
	loginLink As String _
) As Boolean
Visual C++
bool NewPasswordNotice(
	MailReceiverInfo^ receiver, 
	String^ userName, 
	String^ newPassword, 
	String^ loginLink
)

Parameters

receiver
Type: MailReceiverInfo
Destination email address
userName
Type: System..::..String
User's name; unused
newPassword
Type: System..::..String
Plain text password
loginLink
Type: System..::..String
Login link; unused

Return Value

True

See Also