Added mailer to notify on new user

This commit is contained in:
2013-02-01 04:44:05 -07:00
parent 50171effad
commit 1239d6682b
10 changed files with 68 additions and 15 deletions

View File

@@ -17,7 +17,7 @@
<% end %>
<div class="field">
<%= f.label :name %><br />
<%= f.label :name, "Full Name" %><br />
<%= f.text_field :name %>
</div>
<div class="field">
@@ -60,7 +60,7 @@
</div>
<div class="field">
<%= f.label :member_level, "Desired Member Level" %><br />
<%= f.select :member_level, [[nil],["None",0],["Unable",1],["Volunteer",10],["Associate",25],["Basic",50],["Plus",100]] %>
<%= f.select :member_level, [[nil],["None",0],["Unable",1],["Volunteer",10],["Associate ($25)",25],["Basic ($50)",50],["Plus ($100)",100]] %>
</div>
<div class="field">
<%= render :partial => "/users/payment_methods", :locals => { :g => f } %>
@@ -70,11 +70,11 @@
<%= f.text_field :phone %>
</div>
<div class="field">
<%= f.label :current_skills %><br />
<%= f.label :current_skills, "What skills, knowledge and experience do you bring to the community?" %><br />
<%= f.text_area :current_skills %>
</div>
<div class="field">
<%= f.label :desired_skills %><br />
<%= f.label :desired_skills, "What skills, knowledge and experiences are you looking for in HeatSync?" %><br />
<%= f.text_area :desired_skills %>
</div>
<div class="field">

View File

@@ -1,13 +1,13 @@
<% @payment_methods = [[nil],["PayPal"],["Dwolla"],["Bill Pay","BillPay"],["Check"],["Cash"],["Other"]]
@payment_instructions = {nil => nil,
:PayPal => "Set up a monthly recurring payment to hslfinances@gmail.com",
:Dwolla => "Set up a monthly recurring payment to hslfinances@gmail.com",
:PayPal => "Set up a monthly recurring payment to hslfinances@gmail.com or via the button on the next page.",
:Dwolla => "Set up a monthly recurring payment to hslfinances@gmail.com or via the button on the next page.",
:BillPay => "Have your bank send a monthly check to HeatSync Labs Treasurer, 140 W Main St, Mesa AZ 85201",
:Check => "Mail to HeatSync Labs Treasurer, 140 W Main St, Mesa AZ 85201 OR put in the drop safe at the Lab with a deposit slip firmly attached each month.",
:Cash => "Put in the drop safe at the Lab with a deposit slip firmly attached each month.",
:Other => "Hmm... talk to a Treasurer!"} %>
<%= g.label :payment_method %> <i>(after changing this, please make sure you update your payment service, it's not automatic.)</i><br />
<%= g.label :payment_method %><% if params[:action] != 'new' %> <i>(after changing this, please make sure you update your payment service, it's not automatic.)</i><% end %><br />
<%= g.select :payment_method, @payment_methods %>
<% @payment_instructions.each_pair do |key, value| %>
<span class="payment_instructions" id="pmt_<%= key %>"><%= value %></span>