mail.rb

 1result!
 2title "Activate by Mail or Interac e-Tranfer"
 3
 4instructions(
 5	"Activate your account by sending at least " \
 6	"$#{'%.2f' % @price}\nWe support payment by " \
 7	"postal mail or, in Canada, by Interac e-Transfer.\n\n" \
 8	"You will receive a notification when your payment is complete."
 9)
10
11if @customer_id
12	field(
13		label: "Customer ID",
14		var: "customer_id",
15		value: @customer_id
16	)
17end
18
19render "alt_top_up/mailing_address"
20render "alt_top_up/interac" if @currency == :CAD