Sha256: 75b3379f6133919f602bf9593dc457e20554be5f7d6cc1d59668f7c2dba0034a
Contents?: true
Size: 1.18 KB
Versions: 8
Compression:
Stored size: 1.18 KB
Contents
<%= error_messages_for :inquiry_setting %> <% form_for [:admin, @inquiry_setting] do |f| %> <p> Every time someone contacts you on your website, Refinery sends out an email to confirm the inquiry with the person who made it. </p> <p> Below you can edit the email that is sent out. </p> <table id='inquiry'> <tr> <td> <strong>To</strong> </td> <td> The customer making the inquiry </td> </tr> <tr> <td> <strong>From</strong> </td> <td> <%= "#{RefinerySetting[:site_name]} <no-reply@#{request.domain(RefinerySetting.find_or_set(:tld_length, 1))}>" %> </td> </tr> <tr> <td> <strong>Subject</strong> </td> <td> Thank you for your inquiry </td> </tr> <tr> <td valign='top'> <strong>Message</strong> </td> <td> <%= f.text_area :value, :cols => "100", :rows => "5" %><br/> <em>Note: place the text %name% where you'd like the customer's name to appear in the email</em> </td> </tr> </table> <div class='form-actions'> <%= f.submit 'Save', :id => "submit_button" %> or <%= link_to "Cancel", admin_inquiries_url, :title => "Cancelling will lose all changes you've made" %> </div> <% end %>
Version data entries
8 entries across 8 versions & 1 rubygems