[[Dear customer!]]
{capture name=product_info_price}
[[$product_info.price]]
{/capture}
{assign var="product_info_price" value=$smarty.capture.product_info_price}
{assign var="product_info_name" value=$product_info.name}
{assign var="currency_sign" value=$GLOBALS.custom_settings.transaction_currency}
[[Please make a payment in the amount of $currency_sign $product_info_price for $product_info_name.]]
{if $errors}
[[The following errors occured]]:
{foreach from=$errors key=error item=error_data}
{if $error == 'NOT_IMPLEMENTED'}[[There is something missing in the code]]
{/if}
{if $error == 'PRODUCT_PRICE_IS_NOT_SET'}[[No price is defined for this payment]]
{/if}
{if $error == 'PRODUCT_NAME_IS_NOT_SET'}[[Product name is not defined]]
{/if}
{/foreach}
{/if}
[[Please choose from the following payment methods]]:
{foreach from=$gateways item=gateway}
{/foreach}