Skip to content

Commit

Permalink
feat: メールの件名と本文を調整
Browse files Browse the repository at this point in the history
  • Loading branch information
arata-nvm committed Apr 19, 2024
1 parent 152b1a8 commit 34952ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl<R: Repositories, A: Adapters> FormUseCase<R, A> {
to: emails,
reply_to: Some(ctx.config().email_reply_to_address.clone()),
subject: format!(
"申請「{title}」が公開されました - 雙峰祭オンラインシステム",
"申請「{title}」が公開されました",
title = form.title().clone().value()
),
body: format!(
Expand All @@ -71,6 +71,7 @@ impl<R: Repositories, A: Adapters> FormUseCase<R, A> {
回答開始時刻: {starts_at}
回答終了時刻: {ends_at}
詳細は以下のリンクから確認できます。
{url}
※このメールは雙峰祭オンラインシステムが自動送信しています。
Expand Down
3 changes: 2 additions & 1 deletion crates/sos24-use-case/src/interactor/news/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl<R: Repositories, A: Adapters> NewsUseCase<R, A> {
to: emails,
reply_to: Some(ctx.config().email_reply_to_address.clone()),
subject: format!(
"お知らせ「{title}」が公開されました - 雙峰祭オンラインシステム",
"お知らせ「{title}」が公開されました",
title = news.title().clone().value()
),
body: format!(
Expand All @@ -90,6 +90,7 @@ impl<R: Repositories, A: Adapters> NewsUseCase<R, A> {
本文:
{body}
詳細は以下のリンクから確認できます。
{url}
※このメールは雙峰祭オンラインシステムが自動送信しています。
Expand Down

0 comments on commit 34952ee

Please sign in to comment.