Project

contactify

0.0
No commit activity in last 3 years
No release in over 3 years
Builds the form to get contacts on your site using reCaptcha and the Rails resources for managing your contacts.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 3.2.12
~> 0.3.5
 Project Readme

Contactify¶ ↑

Manage your contacts with reCaptcha.

Builds the form to get contacts on your site using reCaptcha and the Rails resources for managing your contacts.

Installation¶ ↑

  1. Add to your Gemfile: gem 'contactify'

  2. Run bundle

  3. Execute: rails generate contactify:install

  4. Run migrations: rake db:migrate

  5. Get your keys: www.google.com/recaptcha

  6. Add your keys to: your_project/config/initializers/recaptcha.rb

  7. Add to your routes.rb: mount Contactify::Engine => "/contactify", :as => "contactify_engine"

  8. Add the link to the Contact Page: <%= link_to "New contact", contactify_engine.contact_us_path %>

  9. Add a link in your backend so you can manage your contacts: <%= link_to "Contacts", contactify.contacts_path %>