feat: [esign] 전자계약 이메일 발신주소를 CONTACT_MAIL_FROM_ADDRESS로 분리

- EsignRequestMail, EsignOtpMail, EsignCompletedMail에 from 주소 명시
- config/mail.php에 contact_from_address 설정 추가
- .env의 CONTACT_MAIL_FROM_ADDRESS(contact@codebridge-x.com) 사용
This commit is contained in:
김보곤
2026-02-24 09:18:29 +09:00
parent 4cee825aca
commit 2ae07d40af
4 changed files with 8 additions and 0 deletions

View File

@@ -115,4 +115,6 @@
'name' => env('MAIL_FROM_NAME', 'Example'),
],
'contact_from_address' => env('CONTACT_MAIL_FROM_ADDRESS', env('MAIL_FROM_ADDRESS', 'hello@example.com')),
];