diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-20 17:30:36 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-20 17:30:36 -0700 |
commit | 26f4e359bf7ffc4612b3170e1423aaedfee62ef8 (patch) | |
tree | 39b973f10ea22c333a1ce01b119ed41442fa8dc4 | |
parent | 43bd726442590125d3d07563822790a8fd9827d2 (diff) | |
download | rails-26f4e359bf7ffc4612b3170e1423aaedfee62ef8.tar.gz rails-26f4e359bf7ffc4612b3170e1423aaedfee62ef8.tar.bz2 rails-26f4e359bf7ffc4612b3170e1423aaedfee62ef8.zip |
Remember to deal with message_id
-rw-r--r-- | app/models/action_mailroom/inbound_email.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/action_mailroom/inbound_email.rb b/app/models/action_mailroom/inbound_email.rb index c439988e91..8526b47e78 100644 --- a/app/models/action_mailroom/inbound_email.rb +++ b/app/models/action_mailroom/inbound_email.rb @@ -1,5 +1,6 @@ require "mail" +# TODO: Add email_message_id to the record extracted from raw_email.message_id to make tracing emails easier class ActionMailroom::InboundEmail < ActiveRecord::Base self.table_name = "action_mailroom_inbound_emails" |