Sends a reply message to all recipients of the original message.

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

Syntax

C#
public virtual bool SendReply(
	Guid parentMessageId,
	Guid replyMessageId,
	Guid userId,
	Guid initialUserId,
	bool sendMailCopy,
	bool isBodyHtml = false
)
Visual Basic
Public Overridable Function SendReply ( 
	parentMessageId As Guid,
	replyMessageId As Guid,
	userId As Guid,
	initialUserId As Guid,
	sendMailCopy As Boolean,
	Optional isBodyHtml As Boolean = false
) As Boolean
Visual C++
public:
virtual bool SendReply(
	Guid parentMessageId, 
	Guid replyMessageId, 
	Guid userId, 
	Guid initialUserId, 
	bool sendMailCopy, 
	bool isBodyHtml = false
)
F#
abstract SendReply : 
        parentMessageId : Guid * 
        replyMessageId : Guid * 
        userId : Guid * 
        initialUserId : Guid * 
        sendMailCopy : bool * 
        ?isBodyHtml : bool 
(* Defaults:
        let _isBodyHtml = defaultArg isBodyHtml false
*)
-> bool 
override SendReply : 
        parentMessageId : Guid * 
        replyMessageId : Guid * 
        userId : Guid * 
        initialUserId : Guid * 
        sendMailCopy : bool * 
        ?isBodyHtml : bool 
(* Defaults:
        let _isBodyHtml = defaultArg isBodyHtml false
*)
-> bool 

Parameters

parentMessageId
Type: System..::..Guid
Parent message id
replyMessageId
Type: System..::..Guid
Reply id
userId
Type: System..::..Guid
Sender's id
initialUserId
Type: System..::..Guid
ID of the initial message sender
sendMailCopy
Type: System..::..Boolean
Indicates wheter to send an e-mail copy of the message to recipients adresses
isBodyHtml (Optional)
Type: System..::..Boolean
Indicates if the mody of the message should be formatted as HTML

Return Value

Type: Boolean
True if the operation was successful, false otherwise

Implements

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

See Also