From 742521ef4af3c4ed22e2b6a2879db41f31fab10d Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Tue, 30 Dec 2025 17:44:32 +0100 Subject: [PATCH] feat: add professional HTML email notification templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add three email templates for tenant notifications with consistent branding and professional design: 1. email-validation-email.html - Email verification request 2. rent-due-email.html - Rent payment due reminder 3. utility-bills-due-email.html - Utility bills ready notification All templates feature: - Responsive 3-column layout with center content area - rezije.app branding with logo and color scheme (#0070F3 blue, #3c3c3d header) - Email client compatible table-based layouts with inline CSS - Template variables for dynamic content (tenant name, location, amounts, etc.) - Unsubscribe links and footer information - Professional typography and spacing Templates use ${variable} syntax for server-side replacement. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- sprints/email-validation-email.html | 143 ++++++++++++++++++++++++++ sprints/rent-due-email.html | 145 +++++++++++++++++++++++++++ sprints/utility-bills-due-email.html | 145 +++++++++++++++++++++++++++ 3 files changed, 433 insertions(+) create mode 100644 sprints/email-validation-email.html create mode 100644 sprints/rent-due-email.html create mode 100644 sprints/utility-bills-due-email.html diff --git a/sprints/email-validation-email.html b/sprints/email-validation-email.html new file mode 100644 index 0000000..6491373 --- /dev/null +++ b/sprints/email-validation-email.html @@ -0,0 +1,143 @@ + + + + + + Verify Your Email - rezije.app + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + +
+ + + + + +
+ rezije.app logo + +

+ rezije.app +

+

+ Property Management Made Easy +

+
+
+ + + + + + +
+

+ Hello ${location.tenantName}, +

+ +

+ You have received this email because your landlord ${ownerName} wants to us to send you rent and utility bills invoices for ${location.name} each month. +

+ +

+ What is this all about?
+ rezije.app is an online app which helps property owners manage expenses related to properties they lease. +

+ +

+ By sending rent and utility bills invoices via email, your landlord can ensure that you receive accurate and timely notifications about your payments, making it easier for both of you to keep track of your financial obligations. +

+ +

+ How many e-mails will I receive?
+ E-mails are sent two times a month at most: once the rent is due, and once when all the utility bills ready. +

+ +

+ We need your confirmation
+ Before we start sending you any bills via email, we would ask you for your permission. + If you accept, please click the button below: +

+ + + + + + +
+ + I accept + +
+ +

+ Or copy and paste this link into your browser: +

+

+ https://rezije.app/email/verify/${shareId} +

+ + + + + + +
+
+
+ +

+ Don't want to receive these emails?
+ You can ignore this email if you don't want to receive notifications. You can also unsubscribe at any time using the link included in every notification email. +

+ +

+ Thank you! +

+
+ + + + + + +
+

+ + Visit rezije.app + +

+

+ © 2025 rezije.app. All rights reserved. +

+
+ +
+
+ + diff --git a/sprints/rent-due-email.html b/sprints/rent-due-email.html new file mode 100644 index 0000000..fb4cf00 --- /dev/null +++ b/sprints/rent-due-email.html @@ -0,0 +1,145 @@ + + + + + + Rent Payment Due - rezije.app + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + +
+ + + + + +
+ rezije.app logo + +

+ rezije.app +

+

+ Property Management Made Easy +

+
+
+ + + + + + +
+

+ Hello ${location.tenantName}, +

+ +

+ This is a friendly reminder that your rent payment for ${location.name} is due on ${rentDueDate}. +

+ + + + + + +
+

+ Amount Due +

+

+ ${rentAmount} ${currency} +

+
+ +

+ To view payment details and attach your proof of payment, please click the button below: +

+ + + + + + +
+ + View Payment Details + +
+ +

+ Or copy and paste this link into your browser: +

+

+ https://rezije.app/share/location/${shareId} +

+ + + + + + +
+
+
+ +

+ If you have any questions or concerns about this payment, please contact your landlord ${ownerName} directly. +

+ +

+ Thank you! +

+
+ + + + + + +
+

+ + Unsubscribe from these emails + +

+

+ + Visit rezije.app + +

+

+ © 2025 rezije.app. All rights reserved. +

+
+ +
+
+ + diff --git a/sprints/utility-bills-due-email.html b/sprints/utility-bills-due-email.html new file mode 100644 index 0000000..c5ac570 --- /dev/null +++ b/sprints/utility-bills-due-email.html @@ -0,0 +1,145 @@ + + + + + + Utility Bills Available - rezije.app + + + + + + + +
+ + + + + + + + + + + + +
+ + + + + + +
+ + + + + +
+ rezije.app logo + +

+ rezije.app +

+

+ Property Management Made Easy +

+
+
+ + + + + + +
+

+ Hello ${location.tenantName}, +

+ +

+ All utility bills for ${location.name} are now due. +

+ + + + + + +
+

+ Total Amount Due +

+

+ ${totalAmount} ${currency} +

+
+ +

+ To view bills and payment information, please click the button below: +

+ + + + + + +
+ + View Payment Details + +
+ +

+ Or copy and paste this link into your browser: +

+

+ https://rezije.app/share/location/${shareId} +

+ + + + + + +
+
+
+ +

+ If you have any questions or concerns, please contact your landlord ${ownerName} directly. +

+ +

+ Thank you! +

+
+ + + + + + +
+

+ + Unsubscribe from these emails + +

+

+ + Visit rezije.app + +

+

+ © 2025 rezije.app. All rights reserved. +

+
+ +
+
+ +