Adds a new recipient item to the collection.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCSMailRecipient Add(
	string address,
	SMailMessageRecipientKind type,
	string name
)
Visual Basic
Public Function Add ( _
	address As String, _
	type As SMailMessageRecipientKind, _
	name As String _
) As BCSMailRecipient
Visual C++
public:
BCSMailRecipient^ Add(
	String^ address, 
	SMailMessageRecipientKind type, 
	String^ name
)

Parameters

address
Type: System..::..String
The email address of the recipient.
type
Type: BlueCieloECM.InnoCielo.Meridian.Scripting..::..SMailMessageRecipientKind
The type of the recipient.
name
Type: System..::..String
The name of the recipient.

Return Value

A new instance of the created recipient object.

See Also