Shun Miyazawa 4 лет назад
Родитель
Сommit
b43e42fde1

+ 1 - 1
packages/app/src/server/routes/apiv3/forgot-password.js

@@ -49,7 +49,7 @@ module.exports = (crowi) => {
   async function sendPasswordResetEmail(txtFileName, i18n, email, url, expiredAt) {
     return mailService.send({
       to: email,
-      subject: txtFileName,
+      subject: '[GROWI] Password Reset',
       template: path.join(crowi.localeDir, `${i18n}/notifications/${txtFileName}.txt`),
       vars: {
         appTitle: appService.getAppTitle(),

+ 1 - 1
packages/app/src/server/routes/user-activation.ts

@@ -29,7 +29,7 @@ async function makeRegistrationEmailToken(email, crowi) {
 
   return mailService.send({
     to: email,
-    subject: txtFileName,
+    subject: '[GROWI] User Activation',
     template: path.join(localeDir, `${i18n}/notifications/${txtFileName}.txt`),
     vars: {
       appTitle: appService.getAppTitle(),