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 });