mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
32 lines
816 B
TypeScript
32 lines
816 B
TypeScript
import Decimal from 'decimal.js-light'
|
|
|
|
export const contributionConfirmed = {
|
|
de: {
|
|
subject: 'Schöpfung wurde bestätigt',
|
|
text: (data: {
|
|
senderFirstName: string
|
|
senderLastName: string
|
|
recipientFirstName: string
|
|
recipientLastName: string
|
|
contributionMemo: string
|
|
contributionAmount: Decimal
|
|
overviewURL: string
|
|
}): string =>
|
|
`Hallo ${data.recipientFirstName} ${data.recipientLastName},
|
|
|
|
Dein eingereichter Gemeinwohl-Beitrag "${data.contributionMemo}" wurde soeben von ${
|
|
data.senderFirstName
|
|
} ${data.senderLastName} bestätigt.
|
|
|
|
Betrag: ${data.contributionAmount.toFixed(2).replace('.', ',')} GDD
|
|
|
|
Bitte antworte nicht auf diese E-Mail!
|
|
|
|
Mit freundlichen Grüßen,
|
|
dein Gradido-Team
|
|
|
|
|
|
Link zu deinem Konto: ${data.overviewURL}`,
|
|
},
|
|
}
|