Sends an email to an array of receivers, originated by sender, informing them of a new Cartella entity. They may reply to the email, allowing new entities to be created and related to the original.

Namespace: Cartella.Interfaces
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
bool EntityCreationNotice(
	MailAddress sender,
	MailReceiverInfo[] receivers,
	string referenceUrl
)
Visual Basic
Function EntityCreationNotice ( _
	sender As MailAddress, _
	receivers As MailReceiverInfo(), _
	referenceUrl As String _
) As Boolean
Visual C++
bool EntityCreationNotice(
	MailAddress^ sender, 
	array<MailReceiverInfo^>^ receivers, 
	String^ referenceUrl
)

Parameters

sender
Type: System.Net.Mail..::..MailAddress
Email address of the originator
receivers
Type: array<MailReceiverInfo>[]()[][]
An array of destination email addresses
referenceUrl
Type: System..::..String
Path to the new entity that triggered the email

Return Value

True

See Also