Work in Progress: Reply By Email:

- Add support classes and settings to enable reply by email
- Split out Email builder to be more OO, add many specs
This commit is contained in:
Robin Ward
2013-06-10 16:46:08 -04:00
parent e338e97fa3
commit e29f4a3496
25 changed files with 400 additions and 96 deletions

View File

@ -0,0 +1,6 @@
class AddReplyKeyToEmailLogs < ActiveRecord::Migration
def change
add_column :email_logs, :reply_key, :string, limit: 32
add_index :email_logs, :reply_key
end
end