Include the latest gem into your Refinery CMS application's Gemfile:
gem 'refinerycms-inquiries', '~> 1.0.0'
Then type the following at command line inside your Refinery CMS application's root directory:
bundle install
To install the migrations, run:
rails generate refinerycms_inquiries
Next migrate your database and you're done:
rake db:migrate
Add a simple contact form to Refinery that notifies you and the customer when an inquiry is made.
In summary you can:
- Collect and manage inquiries
- Specify who is notified when a new inquiry comes in
- Customise an auto responder email that is sent to the person making the inquiry
When inquiries come in, you and the customer are generally notified. As we implemented spam filtering through the filters_spam plugin you will not get notified if an inquiry is marked as 'spam'.
Go into your 'Inquiries' tab in the Refinery admin area and click on "Update who gets notified"
Go into your 'Inquiries' tab in the Refinery admin area and click on "Edit confirmation email"
How do I change the from address from [email protected] to no-reply@[mydomain].com.au
Simply change the Refinery setting 'Tld Length' in the admin section from 1 to 2 and your domain name will be added.
Note: This only affects top level domains that are two deep (ie: not .com or .org, but does affect .com.au etc).