When using Swikly, you will need to create a notification in order to be able to send Swikly deposit links to your guests.
Here are the templates you can use for this notification. The lines in bold are those which need to always be used to make the link visible. You can change the rest of the copy according to your own needs and preferences.
HTML template :
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="padding-copy p">
Hello {{ guest.fullname }},<br>
We thank you for your trust and for your reservation {{booking.reference }} done with our partner for the apartment {{ rental.name }}.<br>
As specified at the time of your reservation, you still have to make your security deposit of {{ booking.damage_deposit | money: booking.currency, format: 'default', symbol_position: 'after' }}.<br>
To facilitate this, we use the Swikly secure online service that allows you to deposit your deposit online, without impacting your bank limit.<br>
The deposit will in no case be debited, it is a bank imprint<br>
In the context of the rental of a villa, a {{ booking.damage_deposit_due }} {{ booking.currency }} deposit will be asked.<br>
Please click on the button below to make your security deposit:<br><br>
{% capture link %} https://secured.swikly.com/bookingsync/{{booking.synced_id}}/secure/{{booking.reference}} {% endcapture %}
{% include "button", label: "Pay damage deposit →", link: link %}
</td>
</tr>
<tr>
<td class="padding-copy p"> If the button doesn't work, please click on the link below<br> https://secured.swikly.com/bookingsync/{{ booking.synced_id }}/secure/{{ booking.reference }}</td>
</tr>
<tr>
<td class="padding-copy p">
We will not be able to finalize the reservation if the amount paid is not correct, so we ask you to select the appropriate link carefully.<br>
We remain at your disposal for any further information.<br>
We look forward to welcoming you soon,<br>
Kind regards
</td>
</tr>
</table>
Plain text template :
Hello {{ guest.fullname }},
We thank you for your trust and for your reservation {{booking.reference }} done with our partner for the apartment {{ rental.name }}.
As specified at the time of your reservation, you still have to make your security deposit of {{ booking.damage_deposit | money: booking.currency, format: 'default', symbol_position: 'after' }}.
To facilitate this, we use the Swikly secure online service that allows you to deposit your deposit online, without impacting your bank limit.
Please use the link below to make your security deposit:
{% capture link %}https://secured.swikly.com/bookingsync/{{booking.synced_id}}/secure/{{booking.reference}}{% endcapture %}
{{ link }}
We remain at your disposal for any further information.
We look forward to welcoming you soon,
Kind regards
Comments
0 comments
Please sign in to leave a comment.