MailMergeMergedMessage Property
Contains the completed mail message which is a result of mail merge operation.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public MailMessage MergedMessage { get; }

Property Value

Type: MailMessage
A merged MailMessage object. The default value is a null reference (Nothing in Visual Basic).
Remarks
To make this property return non-null object, you should call Replace(String, String) method (or its overloads) at least once. Reset method call sets MergedMessage value back to a null reference.
Examples
The example is available in MailMerge class overview.
See Also