Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 외부 공개 프로파일(application.yml)의 이메일 템플릿 설정 누락 수정 완료 #588

Merged
merged 1 commit into from
Oct 8, 2024

Conversation

limehee
Copy link
Collaborator

@limehee limehee commented Oct 8, 2024

Summary

#587

이메일 템플릿 관련 설정을 YAML 파일로 이동하는 작업에서, 외부 공개 프로파일 application.yml에 대한 수정이 누락되었습니다. 이로 인해 YAML 파일에서 이메일 템플릿을 로드하는 설정이 정상적으로 적용되지 않는 문제를 수정합니다.

Tasks

  • 외부 공개 프로파일(application.yml) 수정
    • 이메일 템플릿 로드 경로가 제대로 설정되지 않은 부분을 수정하여, 이메일 전송 시 YAML 파일에서 템플릿을 정상적으로 로드할 수 있도록 설정을 추가.

추가된 YAML

email:
  templates:
    account-creation:
      subject: "C-Lab Account Creation Notice"
      content: |
        Congratulations on becoming an official member of C-Lab!
        During your time with C-Lab, we hope that you achieve all your desired goals with burning passion,
        and in the future, we hope that your joining C-Lab will be remembered as one of our greatest fortunes.

        Please review the account details below to log in:
        ID: {{id}}
        Password: {{password}}
        Please change your password after logging in.
    password-reset-code:
      subject: "C-Lab Password Reset Verification Notice"
      content: |
        This is a C-Lab password reset verification email.
        Your verification code is {{code}}.
        Please enter this verification code on the password reset page.
        After resetting, your new password will be replaced with the verification code.
    new-password:
      subject: "C-Lab Password Reset Notice"
      content: |
        This is a C-Lab password reset notice.
        Please log in using the new password below:
        ID: {{id}}
        Password: {{password}}
        Please change your password after logging in.

@limehee limehee added the 🐞 Bug 버그 제보 및 수정 label Oct 8, 2024
@limehee limehee self-assigned this Oct 8, 2024
@limehee limehee mentioned this pull request Oct 8, 2024
@limehee limehee merged commit 1c1027b into develop Oct 8, 2024
3 checks passed
@limehee limehee deleted the fix/#587 branch October 8, 2024 12:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 Bug 버그 제보 및 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

외부 공개 프로파일(application.yml)의 이메일 템플릿 설정 누락 수정
1 participant