[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.AccountAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public bool sendRemoveNotificationEMail( int userDetailId, string firstName, string lastName, string emailAddress, int groupId, string fromName, string fromEmailAddress, int currentUserId )  | 
| Visual Basic (Declaration) | 
|---|
Public Function sendRemoveNotificationEMail ( _ userDetailId As Integer, _ firstName As String, _ lastName As String, _ emailAddress As String, _ groupId As Integer, _ fromName As String, _ fromEmailAddress As String, _ currentUserId As Integer _ ) As Boolean  | 
| Visual C++ | 
|---|
public: bool sendRemoveNotificationEMail( int userDetailId, String^ firstName, String^ lastName, String^ emailAddress, int groupId, String^ fromName, String^ fromEmailAddress, int currentUserId )  | 
Parameters
- userDetailId
 - Type: System..::.Int32
userDetailId of the new member to whom the notification is being sent. 
- firstName
 - Type: System..::.String
The first name of the new member. 
- lastName
 - Type: System..::.String
The last name of the new member. 
- emailAddress
 - Type: System..::.String
The email Address of the new member. 
- groupId
 - Type: System..::.Int32
The unique id of the group 
- fromName
 - Type: System..::.String
The name from who the email will be sent 
- fromEmailAddress
 - Type: System..::.String
The email address from who the email will be sent 
- currentUserId
 - Type: System..::.Int32
Unique id of the logged in user 
