Displaying 1 result from an estimated 1 matches for "current_account_balance".
2006 Feb 28
0
Help: Script isn''t sending any email
...our payment"
# Email body substitutions go here
@body["first_name"] = user.first_name
@body["last_name"] = user.last_name
@body["transaction_id"] = transaction.id
@body["amount"] = transaction.amount
@body["account_balance"] = bill.current_account_balance
end
View Code:
<html>
<body>
Dear <%= @first_name %> <%= @last_name %>,
<p>We have successfully received your payment of $<%= @amount %>. Your
new
account balance is:<br>
<b>$<%= @current_account_balance %></b><br><br>
Tran...