From 1c241776a64384978767fbd05a021e2135481bd5 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Thu, 15 Jul 2021 20:35:43 +0900
Subject: [PATCH] Improve email notification

---
 src/services/send-email-notification.ts | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/services/send-email-notification.ts b/src/services/send-email-notification.ts
index 08cd04289..497064904 100644
--- a/src/services/send-email-notification.ts
+++ b/src/services/send-email-notification.ts
@@ -3,15 +3,17 @@ import { User } from '../models/entities/user';
 import { sendEmail } from './send-email';
 import * as locales from '../../locales/';
 import { I18n } from '@/misc/i18n';
+import acct from '@/misc/acct/render';
 
 // TODO: locale ファイルをクライアント用とサーバー用で分けたい
 
-async function follow(userId: User['id'], args: {}) {
+async function follow(userId: User['id'], follower: User) {
 	const userProfile = await UserProfiles.findOneOrFail({ userId: userId });
 	if (!userProfile.email || !userProfile.emailNotificationTypes.includes('follow')) return;
 	const locale = locales[userProfile.lang || 'ja-JP'];
 	const i18n = new I18n(locale);
-	sendEmail(userProfile.email, i18n.t('_email._follow.title'), 'test', 'test');
+	// TODO: render user information html
+	sendEmail(userProfile.email, i18n.t('_email._follow.title'), `${follower.name} (@${acct(follower)})`, `${follower.name} (@${acct(follower)})`);
 }
 
 async function receiveFollowRequest(userId: User['id'], args: {}) {