From 1ed82898c647ad1cf1d67afb73b0ad293aa61620 Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Tue, 30 Dec 2025 17:44:23 +0100 Subject: [PATCH] feat: improve verification email subject and content MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update email verification subject line to be more personal and inviting by including the landlord's name. Also add the property location name to the email body to provide better context for the recipient. - Subject changed from "Please verify your e-mail address" to "{ownerName} has invited you to rezije.app" - Added location name to email body for clarity 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- email-worker/src/lib/emailSenders.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/email-worker/src/lib/emailSenders.ts b/email-worker/src/lib/emailSenders.ts index 25add93..e1e3792 100644 --- a/email-worker/src/lib/emailSenders.ts +++ b/email-worker/src/lib/emailSenders.ts @@ -57,7 +57,7 @@ export async function sendVerificationRequests(db: Db, budget: number): Promise< const html = `

Hello ${location.tenantName || 'there'}!

-

You have received this e-mail because your landlord ${ownerName} wants to send you rent and utility bills invoices via rezije.app

+

You have received this e-mail because your landlord ${ownerName} wants to send you rent and utility bills invoices for ${location.name} via rezije.app

rezije.app is an online app which helps property owners to manage expenses related to properties they lease.

@@ -74,7 +74,7 @@ export async function sendVerificationRequests(db: Db, budget: number): Promise< const success = await sendEmail({ to: location.tenantEmail, - subject: 'Please verify your e-mail address', + subject: `${ownerName} has invited you to rezije.app`, html });