Performs a mailmerge using an object that implements IEnumerable (such as a custom collection of objects).
Performs a mailmerge using an object that implements IEnumerable (such as a custom collection of objects).
public bool SendMailMerge(IEnumerable);
Performs a mail merge using an object (collection) that implements IEnumerable.
public bool SendMailMerge(IEnumerable,int,int);
SendMailMerge will send a mass amount of emails using a DataSet as a source of Mail Merge Data. Under the covers, SendMailMerge( DataSet MailMergeDataSet ) actually takes the first DataTable of the MailMergeDataSet and calls SendMailMerge( DataTable MailMergeData ).
public bool SendMailMerge(DataSet);
SendMailMerge will send a mass amount of emails using a DataSet as a source of Mail Merge Data. Under the covers, SendMailMerge( DataSet MailMergeDataSet ) actually takes the first DataTable of the MailMergeDataSet and calls SendMailMerge( DataTable MailMergeData ).
public bool SendMailMerge(DataSet,int,int);
SendMailMerge will send a mass amount of emails using a DataTable as a source of Mail Merge Data.
public bool SendMailMerge(DataTable);
SendMailMerge will send a mass amount of emails using a DataTable as a source of Mail Merge Data.
public bool SendMailMerge(DataTable,int,int);
Performs a MailMerge using a DataView
public bool SendMailMerge(DataView);
Performs a MailMerge using a DataView
public bool SendMailMerge(DataView,int,int);