aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/action_mailroom
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/action_mailroom')
-rw-r--r--app/models/action_mailroom/inbound_email.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/models/action_mailroom/inbound_email.rb b/app/models/action_mailroom/inbound_email.rb
new file mode 100644
index 0000000000..cb39967e09
--- /dev/null
+++ b/app/models/action_mailroom/inbound_email.rb
@@ -0,0 +1,17 @@
+class ActionMailroom::InboundEmail < ActiveRecord::Base
+ self.table_name = "action_mailroom_inbound_email"
+
+ after_create_commit :deliver_to_mailroom_later
+ has_one_attached :raw_message
+
+ enum status: %i[ pending processing delivered failed bounced ]
+
+ def mail
+ @mail ||= Mail.new(Mail::Utilities.binary_unsafe_to_crlf(raw_message.download))
+ end
+
+ private
+ def deliver_to_mailroom_later
+ ActionMailroom::DeliverInboundEmailToMailroomJob.perform_later self
+ end
+end