Someone has registered for a membership.
Details:
<%= "
First Name: #{@resource.first_name}" if !@resource.first_name.nil? %>
<%= "
Last Name: #{@resource.last_name}" if !@resource.last_name.nil? %>
<%= "
E-Mail: #{@resource.email}" if !@resource.email.nil? %>
<%= "
Phone Number: #{@resource.phone}" if !@resource.phone.nil? %>
<%= "
Bio: #{@resource.bio}" if !@resource.bio.nil? %>
If you would like to approve this person click the following link. Clicking the link will approve the new user and send the user a confirmation email.
<%= link_to "Approve account for #{@resource.email} #{approvals_url(@resource.approval_token)}", approvals_url(@resource.approval_token) %>