View Javadoc

1   /** 2008, Digitalis Informatica. All rights reserved.
2    *
3    * Distribuicao e Gestao de Informatica, Lda.
4    * Estrada de Paco de Arcos num.9 - Piso -1
5    * 2780-666 Paco de Arcos
6    * Telefone: (351) 21 4408990
7    * Fax: (351) 21 4408999
8    * http://www.digitalis.pt
9    */
10  
11  package pt.digitalis.dif.utils.mail;
12  
13  
14  /**
15   * The mail types
16   *
17   * @author Pedro Viegas <a href="mailto:pviegas@digitalis.pt">pviegas@digitalis.pt</a><br/>
18   * @created Feb 28, 2009
19   */
20  public enum MailType {
21  
22      /** Plain text mime type */
23      PLAIN_TEXT,
24  
25      /** HTML mime type */
26      HTML;
27  }