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