SmtpMessageNotSentEventArgsMergeTable Property
Gets the reference to the data table used for mail merge of this message.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public DataTable MergeTable { get; }

Property Value

Type: DataTable
A reference to the data table used for mail merge of this message, or a null reference (Nothing in Visual Basic) if this mail message was not composed as a merge of DataTable data with mail template.
Remarks

For mail merge over DataTable operations, e.MergeTable[e.MergeRowIndex] (in C# syntax, assuming e is an instance of SmtpMessageNotSentEventArgs class) returns DataRow used for mail merge of the message which could not be sent.

For mail merge over IDataReader jobs, see MergeDataReader property.

See Also