SendMailJobRecipients Property
Gets the list of the actual recipients of the mail message (or its pattern for mail merge jobs).

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

Property Value

Type: EmailAddressCollection
A 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