Sha256: 8931a7b66b5e499e27908c65ca306087629a642e8f3ce633ee9f56258dbec2a2
Contents?: true
Size: 1.24 KB
Versions: 53
Compression:
Stored size: 1.24 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> <%= render :partial => "/shared/admin/form_actions", :locals => {:f => f, :continue_editing => false, :cancel_url => admin_inquiries_url} %> <% end %>
Version data entries
53 entries across 53 versions & 2 rubygems