-
Notifications
You must be signed in to change notification settings - Fork 1
feat: 이메일 템플릿 구현 #22
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
Merged
Merged
feat: 이메일 템플릿 구현 #22
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
03a7587
feat: 이메일 템플릿 생성
cholulu99 2d878a2
chore: mjml 패키지 추가
cholulu99 c636fdc
refactor: 불필요한 코드 파일 삭제
cholulu99 1c22416
feat: mjml 형식의 이메일 템플릿 적용
cholulu99 74fe1d3
refactor: 메일 제목 수정 - close #21
cholulu99 e2e495c
chore: main과 병합
cholulu99 c7ef70f
feat: url 대신 code로 에러 조건 확인하도록 수정
cholulu99 96b6023
refactor: 공격 설명 수정
cholulu99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| <mjml> | ||
| <mj-head> | ||
| <mj-font | ||
| name="Pretendard" | ||
| href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" | ||
| /> | ||
| <mj-attributes> | ||
| <mj-all font-family="Pretendard, Arial" color="#404040" /> | ||
| </mj-attributes> | ||
| </mj-head> | ||
| <mj-body> | ||
| <mj-section | ||
| background-color="#ffffff" | ||
| border="1px solid #E5E7EB" | ||
| border-radius="8px" | ||
| padding="20px" | ||
| > | ||
| <mj-column> | ||
| <mj-image | ||
| width="90px" | ||
| height="40px" | ||
| src="https://raw.githubusercontent.com/cholulu99/commandTrackerImage/main/3f4-7420ead14100-removebg-preview.png" | ||
| ></mj-image> | ||
| <mj-spacer height="20px"></mj-spacer> | ||
| <mj-text align="center" font-size="16px" line-height="1.5"> | ||
| command Tracker 서비스를 사용해주셔서 감사합니다. | ||
| </mj-text> | ||
| <mj-text align="center" font-size="16px" line-height="1.5"> | ||
| 요청하신 캐릭터의 커맨드는 자막으로 보여집니다. | ||
| </mj-text> | ||
| <mj-divider border-color="#E5E7EB" border-width="1px"></mj-divider> | ||
| <mj-text align="center" font-size="16px"> | ||
| 아래는 스트리트파이터 6의 기본 공격 커맨드입니다: | ||
| </mj-text> | ||
| <mj-text align="center" font-size="14px"> | ||
| <p>LP: 약펀치</p> | ||
| <p>MP: 중간펀치</p> | ||
| <p>HP: 강펀치</p> | ||
| <p>LK: 약발</p> | ||
| <p>MK: 중발</p> | ||
| <p>HK: 강발</p> | ||
| </mj-text> | ||
| <mj-button | ||
| align="center" | ||
| href="<%= url %>" | ||
| background-color="#007BFF" | ||
| color="#ffffff" | ||
| > | ||
| 영상 다운로드 | ||
| </mj-button> | ||
| <mj-divider border-color="#E5E7EB" border-width="1px"></mj-divider> | ||
| <mj-text align="center" font-size="12px" line-height="1.75"> | ||
| <a | ||
| href="https://www.naver.com" | ||
| target="_blank" | ||
| rel="noopener noreferrer nofollow" | ||
| >웹사이트</a | ||
| > | ||
| </mj-text> | ||
| <mj-text | ||
| align="center" | ||
| font-family="Pretendard, Arial" | ||
| font-size="12px" | ||
| line-height="1" | ||
| > | ||
| © command Tracker. All Rights Reserved. | ||
| </mj-text> | ||
| </mj-column> | ||
| </mj-section> | ||
| </mj-body> | ||
| </mjml> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.