[This is preliminary documentation and is subject to change.]

Sends the new invitation email to the user. This email is sent only when the user is introduced to OfficeClip for the first time

Namespace:  OfficeClip.DBLayer.Account
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public bool SendInvitationEMail(
	int status,
	string name,
	string emailAddress,
	string ldapAccountName,
	string password,
	ConfigureInfo session
)
Visual Basic (Declaration)
Public Function SendInvitationEMail ( _
	status As Integer, _
	name As String, _
	emailAddress As String, _
	ldapAccountName As String, _
	password As String, _
	session As ConfigureInfo _
) As Boolean
Visual C++
public:
bool SendInvitationEMail(
	int status, 
	String^ name, 
	String^ emailAddress, 
	String^ ldapAccountName, 
	String^ password, 
	ConfigureInfo^ session
)

Parameters

status
Type: System..::.Int32
What kind of email need to be sent
name
Type: System..::.String
The name of the new member
emailAddress
Type: System..::.String
The email Address of the new member
ldapAccountName
Type: System..::.String
Ldap Account Name of the new member if LDAP Authentication is enabled.
password
Type: System..::.String
Unencrypted password
session
Type: OfficeClip.Utils..::.ConfigureInfo
The user session

Return Value

True, if successfully sent the email, False otherwise

See Also