package com.gear.common.utils.email;
|
|
public class test {
|
public static void main(String[] args) {
|
Emailer emailer = new Emailer();
|
emailer.setEmail("service@saxtrader.co");
|
Emailer to1 = new Emailer();
|
to1.setEmail("chen20100312@gmail.com");
|
to1.setName("customer1");
|
|
Emailer to2 = new Emailer();
|
to2.setEmail("miao7616@126.com");
|
to2.setName("customer");
|
Emailer[] emailers = new Emailer[]{to1,to2};
|
String title = "Registration verification code";
|
String content = "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"UTF-8\" /><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" /><title>SAX</title></head><body><div class=\"\"><div class=\"aHl\"></div><div id=\":oj\" tabindex=\"-1\"></div><div id=\":mx\" class=\"ii gt\" jslog=\"20277; u014N:xr6bB; 1:WyIjdGhyZWFkLWY6MTc4NDQ5NzI1MTEwODY0NjQ4MyJd; 4:WyIjbXNnLWY6MTc4NDQ5NzI1MTEwODY0NjQ4MyJd\"><div id=\":my\" class=\"a3s aiL msg-6415004798784080292\"><u></u><div style=\"margin: 0; padding: 0\"><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"min-height: 100%; width: 100%; background: linear-gradient(235deg, rgba(252, 237, 240) 0, #d2e3f9 50%, #e7f0fc 100%)\"><tbody><tr><td><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin: 100px auto; max-width: 800px; background-color: #fff\"><tbody><tr><td style=\"padding: 70px 100px\"><div style=\"background-color: #fff; width: 72px; height: 30px; margin-bottom: 65px\"><a href=\"https://www.saxtrader.net\" style=\"display: flex; align-items: center; width: 72px; height: 30px\" title=\"DMDlink 1\" target=\"_blank\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.saxtrader.net&source=gmail&ust=1701915598814000&usg=AOvVaw1Bi7HjU20Xnn5Wp7fIqfoW\"><p style=\"line-height: 30px; display: inline-block; margin-left: 10px; font-weight: bold; font-size: 18px; color: #000\">SAX</p></a></div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tbody><tr><td align=\"left\"><div style=\"width: 600px; font-family: PingFangSC-Medium; font-size: 24px; font-weight: 500; line-height: 32px; letter-spacing: 0; color: #1f2126\">Hello, welcome to SAX</div></td></tr><tr><td align=\"left\"><div style=\"font-family: PingFangSC-Regular; font-size: 16px; font-weight: 400; line-height: 33px; letter-spacing: 0; color: #1f2126; margin-top: 4px;\">Please enter the following verification code in the open browser window:</div></td></tr><tr><td align=\"left\"><div style=\"height: 64px; border-radius: 4px; background: #f7f7f7; box-sizing: border-box; border: 1px solid #e8e8e8; text-align: center; line-height: 64px; margin: 24px 0; font-size: 32px; font-weight: 500; color: #1f2126; letter-spacing: 10px;\">123123</div></td></tr><tr><td align=\"left\"><div style=\"font-size: 16px; font-weight: 400; line-height: 28px; letter-spacing: 0; color: #1f2126\">If it is not my own operation, please rest assured to ignore this email。</div></td></tr><tr><td align=\"left\"></td></tr><tr><td align=\"center\"><div style=\"height: 20px\"></div><a href=\"https://www.saxtrader.net\" style=\"margin: 80px 0 0 0; font-size: 12px; font-weight: 400; line-height: 24px; letter-spacing: 0.01em; color: #000; text-decoration: none;\" title=\"DMDlink 2\" target=\"_blank\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.saxtrader.net&source=gmail&ust=1701915598815000&usg=AOvVaw2dWOmMXZjTaLsUyR6sdxjG\">saxtrader.net</a></td></tr><tr><td align=\"center\"><div style=\"font-size: 12px; font-weight: 400; line-height: 24px; letter-spacing: 0.01em; color: #767676\">Trading the world's largest market</div></td></tr><tr><td align=\"left\"><div style=\"border-bottom: 1px solid #d8d8d8; margin: 24px 0 17px 0\"> </div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></div><div class=\"yj6qo\"></div><div class=\"yj6qo\"></div></div><div class=\"hi\"></div><div class=\"WhmR8e\" data-hash=\"0\"></div></div></body></html>\n";
|
SendEmailUtils.sendEmial(emailer,emailers,title,content);
|
}
|
}
|