AddRangeWithSmtpAddresses method

void AddRangeWithSmtpAddresses(
  1. Iterable<String> smtpAddresses
)
Adds multiple e-mail addresses to the collection. The SMTP addresses used to initialize the e-mail addresses.

Implementation

void AddRangeWithSmtpAddresses(Iterable<String> smtpAddresses) {
  for (String smtpAddress in smtpAddresses) {
    this.AddWithSmptpAddress(smtpAddress);
  }
}