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

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

Syntax

C#
public virtual void SendMailToUser(
	Guid messageId,
	Guid userId,
	bool isBodyHtml = false
)
Visual Basic
Public Overridable Sub SendMailToUser ( 
	messageId As Guid,
	userId As Guid,
	Optional isBodyHtml As Boolean = false
)
Visual C++
public:
virtual 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 
override 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.

Implements

IMessageBLL..::..SendMailToUser(Guid, Guid, Boolean)

See Also