MailMergeMergedMessage Property |
Contains the completed mail message which is a result of mail merge operation.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public MailMessage MergedMessage { get; }
Public ReadOnly Property MergedMessage As MailMessage
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