| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084 |
- const sendEmail = require('./Email')
- class emailTemplate {
- stramptoTime(time) {
- if (time < 10)
- return '';
- return new Date(+time).toLocaleString('zh-CN', { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit' });
- }
- async checkEmail(email, code) {
- const time = new Date().getTime()
- await sendEmail(email, 'RunForge - 邮箱验证码',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>RunForge - 邮箱验证码</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap:10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .code {
- margin: 20px 0;
- font-size: 1.5em;
- text-align: center;
- font-weight: bold;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>RunForge - 邮箱验证码</h2>
- </div>
-
- <p>尊敬的用户:</p>
- <p>您正在本站进行邮箱验证操作,如非您本人操作,请忽略此邮件。</p>
- <p>您的验证码为:</p>
- <div class="code">
- ${code}
- </div>
- <p class="important">验证码5分钟内有效,超时请重新获取</p>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async registerSuccess(email, username) {
- const time = new Date().getTime()
- await sendEmail(email, '您已成功注册RunForge账号',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>RunForge - 注册成功提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>RunForge - 注册成功提醒</h2>
- </div>
- <p>尊敬的 ${username}:</p>
- <p>您已成功注册RunForge账号:</p>
- <div class="info">
- <p><strong>用户名:</strong> ${username}</p>
- <p><strong>注册时间:</strong> ${this.stramptoTime(time)}</p>
- </div>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async updateSuccess(email, data) {
- await sendEmail(email, '乐跑账号更新成功提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>乐跑账号更新成功提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>乐跑账号更新好啦,宝宝快看看~ 🎉💖✨</h2>
- </div>
- <p>亲爱的 ${data.name} 宝宝 🌸:</p>
- <p>嘻嘻~ 你已经成功更新了乐跑账号的登录信息啦 🥰💌:</p>
- <div class="info">
- <p><strong>学号:</strong> ${data.account} 🎓</p>
- <p><strong>年级:</strong> ${data.grade_id} 📚</p>
- <p><strong>学院:</strong> ${data.academy_name} 🏫</p>
- <p><strong>更新时间:</strong> ${this.stramptoTime(new Date().getTime())} ⏰</p>
- </div>
- <p class="important">
- ${data.auto_run === 0
- ? '现在还没有帮宝宝开启自动乐跑呢 🐾💦 如果想要开始跑跑的话,记得登录后去RunForge手动点一下哦~ 🌈💕'
- : '已经为宝宝开启了自动乐跑啦 🏃♀️✨ 登录后系统会乖乖替你完成乐跑 💖 记得留意邮箱提醒哟~ 📬'}
- </p>
- <p class="important">宝宝要记得不要在其他设备上登录“智慧体育”小程序哦 🚫📱,不然会失效,到时候又要重新登录啦 😢💦~</p>
- <p class="important">有问题随时喊RunForge客服小可爱呀 💕💌 我们都会耐心陪宝宝解决的哟 ✨🥰</p>
- <p class="footer">Copyright © 2025 RunForge 🌟</p>
- </div>
- </body>
- </html>`
- )
- }
- async lepaoOver(email, data) {
- await sendEmail(email, '🎉乐跑完成祝贺',
- `<!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <title>🎉 RunForge - 乐跑完成祝贺</title>
- <style>
- body {
- background-color: #fffaf4;
- margin: 0;
- padding: 0;
- font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
- }
- .container {
- max-width: 620px;
- margin: 40px auto;
- padding: 30px;
- background-color: #fff;
- border-radius: 14px;
- box-shadow: 0 8px 25px rgba(255, 183, 77, 0.2);
- border: 2px dashed #ffe0b2;
- }
- .head {
- text-align: center;
- margin-bottom: 30px;
- }
- .head h2 {
- color: #ff7043;
- font-size: 26px;
- margin: 0;
- }
- p {
- color: #444;
- font-size: 16px;
- line-height: 1.8;
- }
- .info {
- background-color: #fff3e0;
- border-left: 5px solid #ffb74d;
- padding: 15px 20px;
- margin: 25px 0;
- border-radius: 10px;
- }
- .info p {
- margin: 8px 0;
- }
- .footer {
- text-align: center;
- color: #bbb;
- font-size: 14px;
- margin-top: 40px;
- }
- .highlight {
- color: #ff5722;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>乐跑目标完成🎉</h2>
- </div>
- <p>亲爱的 <span class="highlight">${data.name}</span> 宝宝 ꒰。•ᴗ•。꒱:</p>
- <p>
- ✨恭喜恭喜~你已经火力全开地完成了设定乐跑目标啦!🎊<br>
- 不得不说,你就是我们心中的 <strong>小跑神</strong> 🌟💨,坚持到最后真的超级棒!💪( •̀ᄇ• ́)و
- </p>
- <p>
- 跑过的风,晒过的阳,每一步都是你努力的见证!🌤️🍃<br>
- 我们在远程为你打Call中 📣📣📣 ~真的好佩服佩服你!
- </p>
- <p>
- 这一学期和你一起“并肩作战”,我们感到非常幸运!🧡<br>
- 希望你收获了健康,也收获了快乐~o(≧▽≦)o
- </p>
- <p>
- 📬 如果有任何问题,随时给我们戳小窗~我们在线等你哟 (´▽`)ノ♪
- </p>
- <p>
- 🥳 祝你假期躺赢、学习加buff、每天都开心到冒泡泡!✧*。٩(ˊᗜˋ*)و✧*。<br>
- 📚 新学期我们一起继续加速奔跑吧~Let's gooo!🔥🔥
- </p>
- <p>
- 🧡我们已经为您关闭了自动乐跑功能,如您需要继续乐跑,还可前往RunForge自行开启哦!
- </p>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>
- `
- )
- }
- async lepaoSuccess(email, data) {
- const target_count = Number(data.target_count) || 0
- const total_num = Number(data.total_num) || 0
- const timeSec = Number(data.time) || 0
- const distanceKm = Number(data.distance) || 0
- const passTit = data.pass_tit != null && data.pass_tit !== '' ? data.pass_tit : '—'
- const paceStr =
- distanceKm > 0 && timeSec > 0
- ? this.calculatePace(timeSec, distanceKm)
- : '—'
- const timeStr = timeSec > 0 ? this.formatSecondsToMinSec(timeSec) : '—'
- let goalHtml = ''
- if (target_count === 0) {
- goalHtml = `
- <p><strong>累计次数:</strong> ${total_num} 次 ✨</p>`
- } else {
- const remain = Math.max(0, target_count - total_num)
- const hitGoal = total_num >= target_count
- goalHtml = `
- <p><strong>目标次数:</strong> ${target_count} 次 🎯</p>
- <p><strong>累计次数:</strong> ${total_num} 次 ✨</p>`
- }
- await sendEmail(email, '乐跑成功提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>乐跑成功提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- text-indent: 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>乐跑成功啦 🎉💖</h2>
- </div>
- <p>亲爱的 ${data.name} 宝宝:</p>
- <p>耶耶耶~ 我们已经乖乖帮你完成了一次乐跑啦 ✨🏃♀️💨</p>
- <div class="info">
- <p><strong>学号:</strong> ${data.account}</p>
- <p><strong>跑区:</strong> ${passTit} 🌈</p>
- <p><strong>跑步时间:</strong> ${timeStr} ⏱️</p>
- <p><strong>平均配速:</strong> ${paceStr} 🐇</p>
- <p><strong>跑步距离:</strong> ${distanceKm || '—'} Km 💕</p>
- ${goalHtml}
- </div>
- <p class="important">如果宝宝开启了自动乐跑,要记得不要在其他设备上登录“智慧体育”小程序哦 🚫📱,不然登录就会失效,要重新来一次啦~</p>
- <p class="important">有问题随时找RunForge客服小可爱呀 💌 我们会陪你耐心解决的~</p>
- <p class="footer">Copyright © 2025 RunForge ✨</p>
- </div>
- </body>
- </html>`
- )
- }
- async lepaoFail(email, data) {
- const time = new Date().getTime()
- await sendEmail(email, '乐跑失败提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>乐跑失败提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>乐跑没有成功呢 😢💦</h2>
- </div>
- <p>亲爱的 ${data.name ?? data.account} 宝宝 🌸:</p>
- <p>我们刚刚尝试帮你完成乐跑的时候,遇到了一点小意外呢 💔💦:</p>
- <div class="info">
- <p><strong>学号:</strong> ${data.account} 🎓</p>
- <p><strong>时间:</strong> ${this.stramptoTime(time)} ⏰</p>
- <p><strong>失败原因:</strong> ${data.reason} 😭</p>
- </div>
- <p class="important">宝宝如果是登录失效的话 🥺✨,要记得重新启动RunForge乐跑登录器,再登录“智慧体育”小程序就可以啦 💕</p>
- <p class="important">如果还是不懂,随时可以来找RunForge客服小可爱哟 💌 我们会耐心陪宝宝解决问题的 🌈🥰</p>
- <p class="footer">Copyright © 2025 RunForge 💖</p>
- </div>
- </body>
- </html>`
- )
- }
- async orderNewReply(email, data) {
- await sendEmail(email, 'RunForge - 工单状态更新提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>工单状态更新提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>工单状态更新提醒</h2>
- </div>
- <p>尊敬的用户:</p>
- <p>您编号为${data.id}的工单有新的回复:</p>
- <div class="info">
- <p><strong>回复内容:</strong> ${data.content}</p>
- <p><strong>回复时间:</strong> ${this.stramptoTime(new Date().getTime())}</p>
- </div>
- <p class="important">${data.files.length > 0 ? '当前回复内含有附件,前往RunForge官网内查看' : ''}</p>
- <p class="important">请前往RunForge官网回复工单,请勿直接回复邮件。</p>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async sendCountRequestNotifyAdmins(email, data) {
- await sendEmail(email, 'RunForge - 赠送次数待审核提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>赠送次数待审核提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- text-indent: 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>赠送次数待审核提醒</h2>
- </div>
- <p>尊敬的管理员:</p>
- <p>系统收到一条新的赠送次数申请,请及时审核处理:</p>
- <div class="info">
- <p><strong>申请ID:</strong> ${data.requestId}</p>
- <p><strong>赠送人:</strong> ${data.senderUsername}</p>
- <p><strong>接收人:</strong> ${data.receiverUsername}</p>
- <p><strong>赠送次数:</strong> ${data.count}</p>
- <p><strong>申请时间:</strong> ${this.stramptoTime(data.createTime)}</p>
- </div>
- <p class="important">请前往 RunForge 管理后台进行审核,请勿直接回复邮件。</p>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async lepaoAdminWarning(email, data) {
- const time = new Date().getTime()
- const safe = (v) => (v === undefined || v === null) ? '' : String(v)
- const subject = `RunForge - 乐跑异常告警`
- await sendEmail(email, subject,
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>RunForge - 乐跑异常告警</title>
- <style>
- body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin:0; padding:0; }
- .container { width: 86%; max-width: 760px; margin: 20px auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
- .head { text-align:center; color:#2c3e50; }
- .info { background-color:#ecf0f1; padding: 14px 16px; border-radius: 6px; margin: 18px 0; }
- .info p { margin: 8px 0; text-indent: 0; word-break: break-all; }
- .tag { display:inline-block; background:#ffe8e6; color:#c0392b; padding: 2px 8px; border-radius: 999px; font-size: 12px; }
- .footer { font-size: 12px; text-align:center; color:#7f8c8d; margin-top: 30px; }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>乐跑异常告警 <span class="tag">非常见错误</span></h2>
- </div>
- <p>尊敬的管理员:</p>
- <p>系统在自动乐跑流程中捕获到一条非常见错误。请关注是否为接口变更、代理异常或程序缺陷。</p>
- <div class="info">
- <p><strong>账号:</strong> ${safe(data.account)}</p>
- <p><strong>姓名:</strong> ${safe(data.name)}</p>
- <p><strong>任务:</strong> ${safe(data.taskType)}</p>
- <p><strong>TraceId:</strong> ${safe(data.traceId)}</p>
- <p><strong>时间:</strong> ${this.stramptoTime(time)}</p>
- <p><strong>错误信息:</strong> ${safe(data.reason)}</p>
- <p><strong>错误码:</strong> ${safe(data.code)}</p>
- </div>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async sendCountRequestApproved(email, data) {
- await sendEmail(email, 'RunForge - 赠送次数审核通过提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>赠送次数审核通过提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- text-indent: 0;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>赠送次数审核通过提醒</h2>
- </div>
- <p>尊敬的用户:</p>
- <p>您收到的一笔赠送次数申请已审核通过,次数已到账:</p>
- <div class="info">
- <p><strong>赠送人:</strong> ${data.senderUsername}</p>
- <p><strong>到账次数:</strong> ${data.count}</p>
- <p><strong>审核时间:</strong> ${this.stramptoTime(data.reviewTime)}</p>
- </div>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async sendCountRequestRejected(email, data) {
- await sendEmail(email, 'RunForge - 赠送次数审核失败提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>赠送次数审核失败提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- text-indent: 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>赠送次数审核失败提醒</h2>
- </div>
- <p>尊敬的用户:</p>
- <p>您发起的一笔赠送次数申请未通过审核,已将次数退回到您的账户:</p>
- <div class="info">
- <p><strong>接收人:</strong> ${data.receiverUsername}</p>
- <p><strong>退回次数:</strong> ${data.count}</p>
- <p><strong>审核时间:</strong> ${this.stramptoTime(data.reviewTime)}</p>
- <p><strong>拒绝原因:</strong> ${data.rejectReason}</p>
- </div>
- <p class="important">如有疑问,请前往 RunForge 联系客服处理。</p>
- <p class="footer">Copyright © 2025 RunForge</p>
- </div>
- </body>
- </html>`
- )
- }
- async powerCheck(email, data) {
- await sendEmail(email, '宿舍电费提醒',
- `<html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>宿舍电费提醒</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f4;
- margin: 0;
- padding: 0;
- }
- .container {
- width: 80%;
- margin: 20px auto;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 10px;
- color: #2c3e50;
- }
- p {
- font-size: 16px;
- color: #34495e;
- line-height: 1.6;
- text-indent: 2em;
- }
- .info {
- background-color: #ecf0f1;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .info p {
- margin: 5px 0;
- }
- .important {
- color: #e74c3c;
- font-weight: bold;
- }
- .footer {
- font-size: 14px;
- text-align: center;
- color: #7f8c8d;
- margin-top: 50px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="head">
- <h2>宿舍电费提醒</h2>
- </div>
- <p>尊敬的用户:</p>
- <p>${data.building}${data.room}宿舍电费已低于预设提醒阈值,请留意:</p>
- <div class="info">
- <p><strong>校区:</strong> ${data.area}</p>
- <p><strong>楼栋:</strong> ${data.building}</p>
- <p><strong>寝室号:</strong> ${data.room}</p>
- <p><strong>当前余额:</strong> ¥${data.now_balance}</p>
- <p><strong>提醒阈值:</strong> ¥${data.lowest}</p>
- <p><strong>扣费时间:</strong> ${data.now_change_time}</p>
- </div>
- <p class="important">当前电费已低于预设提醒阈值${Number(data.lowest - data.now_balance).toFixed(2)}元,请及时充值</p>
- <p class="footer">Copyright © 2025 RunForge ✨</p>
- </div>
- </body>
- </html>`
- )
- }
- // 时长计算
- formatSecondsToMinSec(totalSeconds) {
- const minutes = Math.floor(totalSeconds / 60);
- const seconds = totalSeconds % 60;
- return `${minutes}分${seconds.toString().padStart(2, '0')}秒`;
- }
- // 配速计算
- calculatePace(seconds, kilometers) {
- const paceInSeconds = seconds / kilometers;
- const minutes = Math.floor(paceInSeconds / 60);
- const remainingSeconds = Math.round(paceInSeconds % 60);
- return `${minutes}'${remainingSeconds.toString().padStart(2, '0')}''`;
- }
- }
- const EmailTemplate = new emailTemplate()
- module.exports = EmailTemplate
|