Building and sending Newsletters has never been easier!
A fully featured CRM / Newsletter and Mailings Module for Alchemy CMS.
For more Information please visit http://alchemy-cms.com
http://guides.alchemy-cms.com/getting_started.html
Put this line into your projects Gemfile
:
# Gemfile
gem "alchemy_crm", :git => 'git://github.com/magiclabs/alchemy_crm'
Or install it via Rubygems:
$ gem install alchemy_crm
Update your bundle:
$ bundle
Mount the Alchemy CRM Engine into your app:
# config/routes.rb
...
mount AlchemyCrm::Engine => '/newsletter'
mount Alchemy::Engine => '/'
NOTE: It is strongly recommended to mount this module before you mount Alchemy CMS
Copy the migrations into your app and migrate the database:
$ rake alchemy_crm:install:migrations
$ rake db:migrate
Seed the database:
Put this line into your projects db/seeds.rb
file:
AlchemyCrm::Seeder.seed!
And run this rake task:
$ rake db:seed
Generate files and folders:
Run scaffold generator
$ rails g alchemy_crm:scaffold
Run copy elements rake task
$ rake alchemy_crm:elements:copy