Example #1
0
 public void setCc(String cc) {
   if (null != cc) {
     cc = HtmlUtil.filterAllWhite(cc);
   }
   this.cc = cc;
 }
Example #2
0
 public void setBcc(String bcc) {
   if (null != bcc) {
     bcc = HtmlUtil.filterAllWhite(bcc);
   }
   this.bcc = bcc;
 }
Example #3
0
 public void setTo(String to) {
   if (null != to) {
     to = HtmlUtil.filterAllWhite(to);
   }
   this.to = to;
 }