...
Email, SMS and push notification templates
Info |
---|
When automatic reminder solution is uses together with link, only scheduled task can be used för direct payment link. |
To enable a channel for sending the reminder, a template is written for email, SMS and/or push notification. Leave the textfield empty in order to not send to that channel.
...
person.firstName
person.lastName
person.fullName
person.email
person.customerNumber
person.allPhones (all phone numbers of the person)
dueDate
invoiceNumber
ocrNumber
amount - Invoice amount
leftToPay - Remaining amount
fee - Reminder fee
myPagesLink - Link to my pages in web to check invoices
url - direct payment link
Info |
---|
The “url” parameter currently only works when the reminder is sent automatically by the scheduled task, not when it’s sent manually. |
Example (email template)
Code Block |
---|
<html><body> Due date: ${dueDate}<br><br> Invoice number: ${invoiceNumber}<br><br> OCR number: ${ocrNumber}<br> Amount: ${amount}<br> Left to pay: ${leftToPay}<br> Reminder fee: ${fee}<br><br> <a href="${myPagesLink}"> Check your Invoices</a><br> </body></html> |
...