mail.rb

 1result!
 2title "Activate by Mail or Interac e-Tranfer"
 3
 4instructions(
 5	"Activate your account by sending at least " \
 6	"$#{CONFIG[:activation_amount]}\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	"#{@final_message}"
10)
11
12if @customer_id
13	field(
14		label: "Customer ID",
15		var: "customer_id",
16		value: @customer_id
17	)
18end
19
20render "alt_top_up/mailing_address"
21render "alt_top_up/interac" if @currency == :CAD