Methods
O
W
Instance Public methods
on_render()
# File actionmailer/test/base_test.rb, line 265
def on_render
  mail from: "welcome@example.com", to: "to@example.com"
end
welcome()
# File actionmailer/test/base_test.rb, line 253
def welcome
  mail body: "yay", from: "welcome@example.com", to: "to@example.com"
  attachments.inline['invoice.pdf'] = 'This is test File content'
end