coming_soon is a basic template to collect emails while your real site is under construction. There is a landing page where watchers will leave their email details, and a page protected by basicauth that will give you a .csv of all registered watchers.
git clone [email protected]:cmaitchison/coming_soon.git
cd coming_soon
bundle install
heroku create --stack cedar
heroku addons:add sendgrid:starter
rake shipit_with_migrations
Enter your email address and get an email sent to you. You'll be customising this.
Navigate to /watchers to get a .csv of every email and IP that has registered.
username: admin
password: admin
change the credentials in config/app_config.yml
change the html in app/views/home/index.html.haml
change the css in app/assets/stylesheets/home.css.sass
change the email 'from' and 'subject' in app/mailers/watcher_mailer.rb
change the email HMTL in app/views/watcher_mailer/new_watcher.html.haml
The heroku sendgrid add-on is used to send the emails from heroku
In development, run mailcatcher to see the content of the emails being sent
mailcatcher