fix: update email sender to use dynamic address from form data

This commit is contained in:
Dayoung 2025-07-03 13:59:46 +09:00
parent 6fce11c77d
commit 0dc3ede6e2

View File

@ -121,7 +121,7 @@ export class QnaService {
return this.tryFunction(() => {
return sendEmail({
from: 'test@test.com',
from: formData.get('qstMail') as string,
to: receivers,
subject: `[HANASYS お問い合わせ] ${formData.get('title')}`,
content: this.generateEmailContent(formData),