| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085 |
- 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 - 乐跑异常告警(${safe(data.server || '')})`
- 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.server)}</p>
- <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
|