Method: Mailboxer::Models::Messageable#reply_to_all

Defined in:
lib/mailboxer/models/messageable.rb

#reply_to_all(receipt, reply_body, subject = nil, sanitize_text = true, attachment = nil) ⇒ Object

Replies to all the recipients of the message in the conversation



104
105
106
# File 'lib/mailboxer/models/messageable.rb', line 104

def reply_to_all(receipt, reply_body, subject=nil, sanitize_text=true, attachment=nil)
  reply(receipt.conversation, receipt.message.recipients, reply_body, subject, sanitize_text, attachment)
end