Exemplo n.º 1
0
        public InternetMailText Add(string text, InternetMailTextType type = InternetMailTextType.PlainText)
        {
            var newText = new InternetMailText(text, type);

            _data.Add(newText);

            return(newText);
        }
Exemplo n.º 2
0
 public InternetMailText(string text, InternetMailTextType type)
 {
     Text     = text;
     TextType = type;
 }