-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #113 from line/dev
release: 3.2351.25
- Loading branch information
Showing
19 changed files
with
1,237 additions
and
358 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
405 changes: 348 additions & 57 deletions
405
apps/api/src/configs/modules/mailer-config/templates/invitation.hbs
Large diffs are not rendered by default.
Oops, something went wrong.
98 changes: 61 additions & 37 deletions
98
apps/api/src/configs/modules/mailer-config/templates/invitation.html
This file contains 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 |
---|---|---|
@@ -1,44 +1,68 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<style> | ||
/* Add custom classes and styles that you want inlined here */ | ||
</style> | ||
</head> | ||
|
||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<style> | ||
/* Add custom classes and styles that you want inlined here */ | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="bg-light"> | ||
<div class="container p-4 bg-white"> | ||
<div class="stack-col gap-8 w-full"> | ||
<img width="123" height="24" src="https://line-objects-dev.com/abc-user-feedback-email/title-ufb.png" /> | ||
<div> | ||
<img class="ax-center mb-10" width="88" height="100" | ||
src="https://line-objects-dev.com/abc-user-feedback-email/email-signup.png" /> | ||
<div class="text-center fw-700 text-lg mb-3">Sign up to UserFeedback</div> | ||
<div class="text-center fw-400 text-sm mb-6">This link will be expire after 24 hours or if it is used once. | ||
<body> | ||
<div class="bg-light"> | ||
<div class="container bg-white p-4"> | ||
<div class="stack-col w-full gap-8"> | ||
<img | ||
width="123" | ||
height="24" | ||
src="{{baseUrl}}/assets/mailing/title-ufb.png" | ||
/> | ||
<div> | ||
<img | ||
class="ax-center mb-10" | ||
width="88" | ||
height="100" | ||
src="{{baseUrl}}/assets/mailing/email-signup.png" | ||
/> | ||
<div class="fw-700 mb-3 text-center text-lg"> | ||
Sign up to UserFeedback | ||
</div> | ||
<div class="fw-400 mb-6 text-center text-sm"> | ||
This link will be expire after 24 hours or if it is used once. | ||
</div> | ||
<a href="{{link}}" class="ax-center btn btn-black w-56">Sign Up</a> | ||
</div> | ||
<a href='{{link}}' class="ax-center btn btn-black w-56">Sign Up</a> | ||
</div> | ||
<div class="text-center fw-400 text-xs text-secondary">This email cannot accept email. Do not reply to this | ||
email.</div> | ||
<div style="background: #78788014"> | ||
<div class="mt-6 mb-6 stack-row gap-3 ax-center"> | ||
<a href="https://line.me"> | ||
<img width="24" height="24" src="https://line-objects-dev.com/abc-user-feedback-email/globe-fill.png" /> | ||
</a> | ||
<a href="https://github.com/line/abc-user-feedback"> | ||
<img width="24" height="24" src="https://line-objects-dev.com/abc-user-feedback-email/github-mark.png" /> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<img width="24" height="24" src="https://line-objects-dev.com/abc-user-feedback-email/mail-fill.png" /> | ||
</a> | ||
<div class="fw-400 text-secondary text-center text-xs"> | ||
This email cannot accept email. Do not reply to this email. | ||
</div> | ||
<div style="background: #78788014"> | ||
<div class="stack-row ax-center mb-6 mt-6 gap-3"> | ||
<a href="https://line.me"> | ||
<img | ||
width="24" | ||
height="24" | ||
src="{{baseUrl}}/assets/mailing/globe-fill.png" | ||
/> | ||
</a> | ||
<a href="https://github.com/line/abc-user-feedback"> | ||
<img | ||
width="24" | ||
height="24" | ||
src="{{baseUrl}}/assets/mailing/github-mark.png" | ||
/> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<img | ||
width="24" | ||
height="24" | ||
src="{{baseUrl}}/assets/mailing/mail-fill.png" | ||
/> | ||
</a> | ||
</div> | ||
<div class="fw-400 text-secondary mb-6 text-center text-xs"> | ||
@ ABC Studio | ||
</div> | ||
</div> | ||
<div class="text-center fw-400 text-xs text-secondary mb-6">@ ABC Studio</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> | ||
</body> | ||
</html> |
Oops, something went wrong.