Skip to content

Commit

Permalink
feat: clarify bill email
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvanherwijnen committed Dec 13, 2024
1 parent b80ee7e commit 2723708
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/api/src/templates/email/bill/send/en-US.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { c } from 'compress-tag'

const subject = `You have an outstanding bill`
const subject = `View or pay your outstanding bill`
const body = c`</p>Dear {{#if clientDetails.contactPersonName}}{{clientDetails.contactPersonName}}{{else}}{{clientDetails.companyName}}{{/if}},</p>
<p>In the attachment you can find the bill with an amount due of {{amountDue}}.
We would like to request you to pay this amount online.</p>
We would like to request you to pay this amount with the link below.</p>
<p>You can view and pay the bill <a href="\\{{invoiceUrl}}">here</a>.
Expand Down
4 changes: 2 additions & 2 deletions packages/api/src/templates/email/bill/send/nl.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { c } from 'compress-tag'

const subject = `U heeft een openstaande rekening`
const subject = `Bekijk of betaal uw openstaande rekening`
const body = c`
<p>Beste {{#if clientDetails.contactPersonName}}{{clientDetails.contactPersonName}}{{else}}{{clientDetails.companyName}}{{/if}},</p>
<p>Bijgevoegd treft u uw rekening aan met een openstaand bedrag ter hoogte van {{amountDue}}.
We willen u verzoeken om dit bedrag online te betalen.</p>
We willen u verzoeken om dit bedrag via onderstaande link te betalen.</p>
<p>U kunt de rekening <a href="\\{{invoiceUrl}}">hier</a> bekijken en betalen.
Expand Down

0 comments on commit 2723708

Please sign in to comment.