Guest User

Untitled

a guest
Mar 21st, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. mail = Mail.new do
  2. from 'me@test.lindsaar.net'
  3. to 'you@test.lindsaar.net'
  4. subject 'Here is the image you wanted'
  5. body File.read('body.txt')
  6. add_file :filename => 'somefile.png', :content => File.read('/somefile.png')
  7. end
  8.  
  9. mail.deliver!
Add Comment
Please, Sign In to add comment