[This is preliminary documentation and is subject to change.]

Constructor

Namespace:  OfficeClip.BusinessLayer.Template
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public CampaignInfo(
	int campaignId,
	TemplateInfo tInfo,
	int emailAccountId,
	bool isRecurring,
	bool isMailMerge,
	int letterheadId,
	string senderName,
	string senderEmail
)
Visual Basic (Declaration)
Public Sub New ( _
	campaignId As Integer, _
	tInfo As TemplateInfo, _
	emailAccountId As Integer, _
	isRecurring As Boolean, _
	isMailMerge As Boolean, _
	letterheadId As Integer, _
	senderName As String, _
	senderEmail As String _
)
Visual C++
public:
CampaignInfo(
	int campaignId, 
	TemplateInfo^ tInfo, 
	int emailAccountId, 
	bool isRecurring, 
	bool isMailMerge, 
	int letterheadId, 
	String^ senderName, 
	String^ senderEmail
)

Parameters

campaignId
Type: System..::.Int32
The unique id of the campaign
tInfo
Type: OfficeClip.BusinessLayer.Template..::.TemplateInfo
The template information
emailAccountId
Type: System..::.Int32
The unique id of teh email account
isRecurring
Type: System..::.Boolean
True if it is a recurring campaign
isMailMerge
Type: System..::.Boolean
True if it is a mail-merge campaign
letterheadId
Type: System..::.Int32
The unique id of the letterhead
senderName
Type: System..::.String
The name of the sender
senderEmail
Type: System..::.String
The email address of the sender

See Also