Skip to content

Commit

Permalink
chore: change send bill email
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvanherwijnen committed Nov 21, 2024
1 parent 9f1072c commit 21453f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions packages/api/src/templates/email/bill/send/en-US.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { c } from 'compress-tag'

const subject = `Outstanding bill`
const subject = `You have an 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}}.</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>
<p>You can also view and pay the bill <a href="\\{{invoiceUrl}}">here</a>.
<p>You can view and pay the bill <a href="\\{{invoiceUrl}}">here</a>.
<p>If you have any questions about this bill, you can contact us.</p>
Expand Down
7 changes: 4 additions & 3 deletions packages/api/src/templates/email/bill/send/nl.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { c } from 'compress-tag'

const subject = `Openstaande rekening`
const subject = `U heeft een 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}}.</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>
<p>U kunt de rekening ook <a href="\\{{invoiceUrl}}">hier</a> bekijken en betalen.
<p>U kunt de rekening <a href="\\{{invoiceUrl}}">hier</a> bekijken en betalen.
<p>Mocht u nog vragen hebben over deze rekening, dan kunt u contact met ons opnemen.</p>
Expand Down

0 comments on commit 21453f6

Please sign in to comment.