Pay button option
The use of the tag [paylink] in the Buckaroo email templates enables the display of a payment link in the form of a URL. This URL is extremely long and might make certain receivers question payment safety.
Payment link as a button
If you want to let a payment button refer to a payment link, copy the following HTML code in the template:
<table><tbody>
<tr>
<td style="height: 35px; width: 120px; text-align: center; background-color: #cbd614">
<a style="font-size: 14px; text-decoration: none; color: #ffffff; padding-bottom: 0px; text-align: center; padding-top: 0px; padding-left: 0px; margin: 0px; display: block; line-height: 35px; padding-right: 0px; align: center" href="[paylink]" target=_blank><strong>Pay invoice</strong></a>
</td>
</tr>
</tbody></table>
Example
Pay invoice |
With the HTML reference above, the payer is redirected to the Buckaroo checkout page. The color of the button can be adjusted by changing background color: #cbd614 to a different value. The font color of the letters used in the button can be adjusted by changing color: #ffffff to a different value.
Payment link as text
It is possible to add text to a payment link, also known as hyperlink. Use the following code:
<a style="color: #cbd614" href="[paylink]" target="_blank">Yes, I will pay now</a>
With the HTML reference above, the payer is redirected to the Buckaroo checkout page. The font color can be adjusted by changing color: #cbd614 to a different value.