Send an e-mail with InMail message to a user.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
void SendMailToUser(
	Guid messageId,
	Guid userId,
	bool isBodyHtml = false
)
Visual Basic
Sub SendMailToUser ( 
	messageId As Guid,
	userId As Guid,
	Optional isBodyHtml As Boolean = false
)
Visual C++
void SendMailToUser(
	Guid messageId, 
	Guid userId, 
	bool isBodyHtml = false
)
F#
abstract SendMailToUser : 
        messageId : Guid * 
        userId : Guid * 
        ?isBodyHtml : bool 
(* Defaults:
        let _isBodyHtml = defaultArg isBodyHtml false
*)
-> unit 

Parameters

messageId
Type: System..::..Guid
Message Id.
userId
Type: System..::..Guid
User Id.
isBodyHtml (Optional)
Type: System..::..Boolean
Is body in HTML format.

See Also