Sha256: b8b1cef125e8d45b10c2ad99c4b86929b9e96e599623871cb343f684caa00b54

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 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]} &lt;no-reply@#{request.domain(RefinerySetting.find_or_set(:tld_length, 1))}&gt;" %>
			</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

1 entries across 1 versions & 1 rubygems

Version Path
refinerycms-0.9.5.13 vendor/plugins/inquiries/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb