| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- package com.ruoyi.common.thread;
- import com.ruoyi.common.sendEmail.IMailService;
- import com.ruoyi.project.sems.domain.TApprove;
- import java.util.Date;
- public class SendEmailThead implements Runnable {
- private IMailService mailService;
- private String email;
- private String apNo;
- private String username;
- private String usernameEN;
- private TApprove tApprove;
- private String sendType;
- public SendEmailThead(String email, String apNo, String username, String usernameEN, IMailService mailService, TApprove tApprove, String sendType) {
- this.email = email;
- this.apNo = apNo;
- this.username = username;
- this.usernameEN = usernameEN;
- this.mailService = mailService;
- this.tApprove = tApprove;
- this.sendType = sendType;
- }
- /*
- * 发送邮件
- */
- @Override
- public void run() {
- if (sendType.equals("year")) {
- year();
- }else if (sendType.equals("month")) {
- month();
- }
- }
- /*
- * 发送年度邮件
- */
- public void year() {
- String devType = null;
- String devTypeEN = null;
- switch (tApprove.getDevType().toString()) {
- case "1":
- devType = "压力容器";
- devTypeEN = "Pressure Vessel";
- break;
- case "2":
- devType = "压力管道";
- devTypeEN = "Pressure Pipeline";
- break;
- }
- String approveType = "生成" + devType + "年度检查报告";
- String approveTypeEN = "Generate annual inspection report of " + devTypeEN;
- //写html开始内容
- String start = "<!DOCTYPE html><html><head><meta charset=\"utf-8\"><title></title></head><body><div style=\"background-color:#ECECEC; padding: 35px;\">" +
- "<table cellpadding=\"0\" align=\"center\"" +
- "style=\"width: 600px; margin: 0px auto; text-align: left; position: relative; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; font-size: 14px; font-family:微软雅黑, 黑体; line-height: 1.5; box-shadow: rgb(153, 153, 153) 0px 0px 5px; border-collapse: collapse; background-position: initial initial; background-repeat: initial initial;background:#fff;\">" +
- "<tbody><tr><th valign=\"middle\" style=\"height: 25px; line-height: 25px; padding: 15px 35px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #42a3d3; background-color: #49bcff; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px;\">" +
- "<font face=\"微软雅黑\" size=\"5\" style=\"color: rgb(255, 255, 255); \">特种设备信息管理系统 </font><font face=\"微软雅黑\" size=\"3\" style=\"color: rgb(255, 255, 255); \">Special Equipment Management System (SEMS)</font></th></tr>";
- //表html中间内容
- String prime = "";
- String center = "<tr><td><div style=\"padding:25px 35px 40px; background-color:#fff;\"><h2 style=\"margin: 5px 0px; \">" +
- "<font color=\"#333333\" style=\"line-height: 20px; \"><font style=\"line-height: 22px; \" size=\"4\">" +
- "亲爱的 username</font><br><font style=\"line-height: 22px; \" size=\"4\">" +
- "Dear usernameEN</font></font></h2>" +
- "<p>您有一个新的待办任务:<br>" +
- "You have a new to-do task:<br>" +
- "任务编号:<b>apNo</b><br>" +
- "Task Number: <b>apNoEN</b><br>" +
- "申请设备类型:<b>devType</b><br>" +
- "Equipment Type: <b>devTypeEN</b><br>" +
- "审批类型:<b>approveType</b><br>" +
- "Application Category: <b>approveTypeEN</b><br>" +
- "请登录<a href=\"https://cpms.basf-ypc.net.cn/cpms/index.html#/approve/pending\">特种设备信息管理系统</a>查看。<br>" +
- "Please log in the <a href=\"https://cpms.basf-ypc.net.cn/cpms/index.html#/approve/pending\">SEMS</a> to handle it.</p>" +
- "<p align=\"right\">date</p>" +
- "<div style=\"width:700px;margin:0 auto;\">" +
- "<div style=\"padding:10px 10px 0;border-top:1px solid #ccc;color:#747474;margin-bottom:20px;line-height:1.3em;font-size:12px;\">" +
- "<p>此为系统邮件,请勿回复<br>This e-Mail is an automatic reminder sent by SEMS, please do not reply</p>" +
- "</div></div></div></td></tr>";
- String one = center.replaceFirst("username", username);
- String two = one.replaceFirst("usernameEN", usernameEN);
- String three = two.replaceFirst("devType", devType);
- String four = three.replaceFirst("apNo", apNo);
- String five = four.replaceFirst("apNoEN", apNo);
- String six = five.replaceFirst("devTypeEN", devTypeEN);
- String seven = six.replaceFirst("approveType", approveType);
- String eight = seven.replaceFirst("approveTypeEN", approveTypeEN);
- String result = eight.replaceFirst("date", String.valueOf(new Date()));
- prime = prime + result;
- //写html结尾内容
- String end = "</tbody></table></div></body></html>";
- //拼接html
- String html = start + prime + end;
- mailService.sendHtmlMail(email, "特种设备:您有一个新的待办任务 SEMS:You have a new to-do task (" + apNo + ")", html);
- }
- /*
- * 发送月度邮件
- */
- public void month() {
- String approveType = "生成月度检查报告";
- String approveTypeEN = "Generate monthly inspection report";
- //写html开始内容
- String start = "<!DOCTYPE html><html><head><meta charset=\"utf-8\"><title></title></head><body><div style=\"background-color:#ECECEC; padding: 35px;\">" +
- "<table cellpadding=\"0\" align=\"center\"" +
- "style=\"width: 600px; margin: 0px auto; text-align: left; position: relative; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; font-size: 14px; font-family:微软雅黑, 黑体; line-height: 1.5; box-shadow: rgb(153, 153, 153) 0px 0px 5px; border-collapse: collapse; background-position: initial initial; background-repeat: initial initial;background:#fff;\">" +
- "<tbody><tr><th valign=\"middle\" style=\"height: 25px; line-height: 25px; padding: 15px 35px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #42a3d3; background-color: #49bcff; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px;\">" +
- "<font face=\"微软雅黑\" size=\"5\" style=\"color: rgb(255, 255, 255); \">特种设备信息管理系统 </font><font face=\"微软雅黑\" size=\"3\" style=\"color: rgb(255, 255, 255); \">Special Equipment Management System (SEMS)</font></th></tr>";
- //表html中间内容
- String prime = "";
- String center = "<tr><td><div style=\"padding:25px 35px 40px; background-color:#fff;\"><h2 style=\"margin: 5px 0px; \">" +
- "<font color=\"#333333\" style=\"line-height: 20px; \"><font style=\"line-height: 22px; \" size=\"4\">" +
- "亲爱的 username</font><br><font style=\"line-height: 22px; \" size=\"4\">" +
- "Dear usernameEN</font></font></h2>" +
- "<p>您有一个新的待办任务:<br>" +
- "You have a new to-do task:<br>" +
- "任务编号:<b>apNo</b><br>" +
- "Task Number: <b>apNoEN</b><br>" +
- "审批类型:<b>approveType</b><br>" +
- "Application Category: <b>approveTypeEN</b><br>" +
- "请登录<a href=\"https://cpms.basf-ypc.net.cn/cpms/index.html#/approve/pending\">特种设备信息管理系统</a>查看。<br>" +
- "Please log in the <a href=\"https://cpms.basf-ypc.net.cn/cpms/index.html#/approve/pending\">SEMS</a> to handle it.</p>" +
- "<p align=\"right\">date</p>" +
- "<div style=\"width:700px;margin:0 auto;\">" +
- "<div style=\"padding:10px 10px 0;border-top:1px solid #ccc;color:#747474;margin-bottom:20px;line-height:1.3em;font-size:12px;\">" +
- "<p>此为系统邮件,请勿回复<br>This e-Mail is an automatic reminder sent by SEMS, please do not reply</p>" +
- "</div></div></div></td></tr>";
- String one = center.replaceFirst("username", username);
- String two = one.replaceFirst("usernameEN", usernameEN);
- String three = two.replaceFirst("apNo", apNo);
- String four = three.replaceFirst("apNoEN", apNo);
- String five = four.replaceFirst("approveType", approveType);
- String six = five.replaceFirst("approveTypeEN", approveTypeEN);
- String result = six.replaceFirst("date", String.valueOf(new Date()));
- prime = prime + result;
- //写html结尾内容
- String end = "</tbody></table></div></body></html>";
- //拼接html
- String html = start + prime + end;
- mailService.sendHtmlMail(email, "特种设备:您有一个新的待办任务 SEMS:You have a new to-do task (" + apNo + ")", html);
- }
- }
|