From a891d7fb64a689e5357bcdd516ffa86d7edbc97c Mon Sep 17 00:00:00 2001 From: "maruyama.t" Date: Tue, 16 May 2023 00:52:43 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20110:=20=E3=83=A1=E3=83=BC?= =?UTF-8?q?=E3=83=AB=E6=9C=AC=E6=96=87=E3=81=AB=E4=BB=AE=E3=83=91=E3=82=B9?= =?UTF-8?q?=E3=83=AF=E3=83=BC=E3=83=89=E3=82=92=E8=A8=98=E8=BC=89=E3=81=99?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task1756: メール本文に仮パスワードを記載する](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1756) - 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず) - 何をどう変更したか、追加したライブラリなど - このPull Requestでの対象/対象外 - 影響範囲(他の機能にも影響があるか) ## レビューポイント - 特にレビューしてほしい箇所 - 軽微なものや自明なものは記載不要 - 修正範囲が大きい場合などに記載 - 全体的にや仕様を満たしているか等は本当に必要な時のみ記載 ## UIの変更 - Before/Afterのスクショなど - スクショ置き場 ## 動作確認状況 - ローカルで確認、develop環境で確認など ## 補足 - 相談、参考資料などがあれば --- dictation_server/src/features/users/users.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dictation_server/src/features/users/users.service.ts b/dictation_server/src/features/users/users.service.ts index 4c96728..7baefa7 100644 --- a/dictation_server/src/features/users/users.service.ts +++ b/dictation_server/src/features/users/users.service.ts @@ -240,8 +240,7 @@ export class UsersService { const subject = 'A temporary password has been issued.'; const text = 'temporary password: ' + ramdomPassword; const domains = this.configService.get('APP_DOMAIN'); - const path = '/'; - const html = `

OMDS TOP PAGE URL.

${domains}${path}}"`; + const html = `

OMDS TOP PAGE URL.

${domains}"
temporary password: ${ramdomPassword}`; // メールを送信 await this.sendgridService.sendMail(email, from, subject, text, html);