opencms中自动发送email

opencms的email是直接继承apache的email类.下面也一个发送html格式的email的列子,
其他类还可以发送比如带附件之类的email.
     CmsHtmlMail mail = new CmsHtmlMail();
     String password = user.getPassword();
     mail.setCharset("GBK"); 
     mail.setHtmlMsg("邮件内容");
     mail.setSubject("标题");
     mail.addTo(user.getEmail(),"");
     mail.setFrom("发送人的email地址","发送人的名字")
      mail.send();


下面在opencms-system.xml进行配制.
    <mail>
      <mailfrom>[email protected]</mailfrom>
      <mailhost name="192.168.0.9" protocol="smtp" user="用户名" password="密码"/>
      <mailhost name="alternative.smtp.server"/>
      <mailhost name="another.alternative.smtp.server"/>
    </mail>

你可能感兴趣的:(apache,html,xml)