Module: Netfira::WebConnect::Model::Record::Sendable

Extended by:
ActiveSupport::Concern
Defined in:
lib/netfira/web_connect/model/record/sendable.rb

Constant Summary collapse

DELIVERY_STATUSES =
%i(unsent sent delivered)

Instance Method Summary collapse

Instance Method Details

#send!Object



22
23
24
25
26
27
# File 'lib/netfira/web_connect/model/record/sendable.rb', line 22

def send!
  sent!
  save!
  send_notifications!
  self
end