Method: ExportFile#send_message

Defined in:
app/models/concerns/export_file.rb

#send_message(mailer) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'app/models/concerns/export_file.rb', line 10

def send_message(mailer)
  sender = User.find(1)
  message = Message.create!(
    recipient: user.username,
    sender: sender,
    body: mailer.body.raw_source,
    subject: mailer.subject
  )
end