AddWithNameAndSmtpAddress method
Implementation
EmailAddress AddWithNameAndSmtpAddress(String name, String smtpAddress) {
EmailAddress emailAddress =
new EmailAddress(name: name, smtpAddress: smtpAddress);
this.Add(emailAddress);
return emailAddress;
}