Sends an email to the receiver address confirming that the user has changed the password; the new password is sent in the body.

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

Syntax

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

Parameters

receiver
Type: MailReceiverInfo
Destination email address
userName
Type: System..::..String
User name; unused
newPassword
Type: System..::..String
Plain text password

Return Value

True

See Also