public void AddRecipientIfMissing(string emailAddress) { if (RecipientList.Contains(emailAddress)) { return; } RecipientList.Add(emailAddress); }