SendMailJobRecipients Property |
Gets the list of the actual recipients of the mail message (or its pattern for mail merge jobs).
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public EmailAddressCollection Recipients { get; }
Public ReadOnly Property Recipients As EmailAddressCollection
Get
Property Value
Type:
EmailAddressCollectionA reference to the collection of the actual recipients of the mail message,
or an actual recipients template for mail merge jobs.
Remarks This collection usually lists "To", "CC", and "BCC" recipients of the mail message.
However, it can be different if the e-mail or mail merge needs to be sent to fake addresses
(when "To:" and/or "Cc:" and "Bcc:" addresses are different from SMTP "RCPT TO:" addresses). To achieve this,
call
AddJob(String, String, EmailAddressCollection) method with
non-null value of
recipients parameter (or
recipientsPattern
for mail merge overloads of this method).
See Also