Pay button option

The use of the tag [paylink] in Buckaroo email templates allows for the display of a payment link in the form of a URL. However, this URL might appear long and might raise questions about payment safety. To address this, you can use a payment button.

Payment Link as a Button

If you prefer to have a payment button instead of a plain URL, use 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

The payer is redirected to the Buckaroo checkout page with the HTML reference above. The button's color can be adjusted by changing background-color: #cbd614 to your preferred color. Similarly, the font colour of the text on the button can be adjusted by changing the colour: #ffffff.


Payment Link as Text

If you want to add text to a payment link, also known as a hyperlink, use the following code:

<a style="color: #cbd614" href="[paylink]" target="_blank">Yes, I will pay now</a>

Example

The payer is redirected to the Buckaroo checkout page with the HTML reference above. The font colour can be adjusted by changing colour: #cbd614 to your preferred colour.