Skip to content

Commit 577ea40

Browse files
committed
o
1 parent 5ba5ff5 commit 577ea40

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

backend/admin_api/src/email/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ export async function sendCustomerUserPasswordEmail(
9292
smtp_config: SMTPConfig,
9393
) {
9494
// @TODO: email template should be updated
95+
// @TODO: Replace all SVG images (logo, icons, screws) with PNGs for better email client compatibility.
96+
// @TODO: Rebuild the header area without position:absolute/transform; use table-based layout or a single baked header image.
97+
// @TODO: Remove fixed heights (e.g., 972px, 793px, 295px) and let content size naturally for different email clients.
98+
// @TODO: Verify that the Inter font/webfont usage is acceptable; ensure readable fallbacks for clients that block webfonts.
99+
95100
const subject = `Initial Password for ${customer_label}`;
96101
const escapedPassword = he.escape(password);
97102
const escapedCustomerLabel = he.escape(customer_label);
@@ -327,7 +332,7 @@ If you didn't request this account, please ignore this email.
327332
border-radius: 222px;
328333
height: 45px;
329334
">
330-
<a href="{{ signInUrl }}" style="
335+
<a href="https://dapp.oko.app/" style="
331336
display: inline-block;
332337
padding: 12px 32px;
333338
font-family:

0 commit comments

Comments
 (0)