class Mail::Message

Public Instance Methods

_mailluloid_super_deliver()
Alias for: deliver
deliver() click to toggle source
# File lib/mailluloid.rb, line 8
def deliver
  async.deliver_then_terminate
end
Also aliased as: _mailluloid_super_deliver
deliver_then_terminate() click to toggle source
# File lib/mailluloid.rb, line 12
def deliver_then_terminate
  _mailluloid_super_deliver # trigger super `deliver` in background thread
  terminate # terminate the action to prevent memory leaks
end