ePay.mailreceipt
Version: - stringSummary
Returns current data of Auth Mail field in the payment gateway settings. It can be used to receive an email with information about the payment when it is completed. This is NOT used for your customer's order confirmation.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.mailreceipt")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.mailreceipt"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.mailreceipt");
}
Outputting the template tag
<!--@ePay.mailreceipt-->
Check if string has a value
<!--@If Defined(@ePay.mailreceipt)-->
Let's output this tag here: <strong><!--@ePay.mailreceipt--></strong>
<!--@EndIf(@ePay.mailreceipt)-->