Sha256: 243882af366ac389f329452135e7293b65c0aa7b8be308d123da5451c71abe0d
Contents?: true
Size: 1.16 KB
Versions: 19
Compression:
Stored size: 1.16 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' %> or <%= link_to "Cancel", admin_inquiries_url, :title => "Cancelling will lose all changes you've made" %> </div> <% end %>
Version data entries
19 entries across 19 versions & 1 rubygems