Method: Mail::SMTPConnection#deliver_raw!
- Defined in:
- lib/mailhandler/extensions/mail/smtp.rb
#deliver_raw!(raw_source_email, smtp_from, smtp_to) ⇒ Object
18 19 20 21 22 |
# File 'lib/mailhandler/extensions/mail/smtp.rb', line 18 def deliver_raw!(raw_source_email, smtp_from, smtp_to) response = smtp.sendmail(dot_stuff(raw_source_email), smtp_from, smtp_to) settings[:return_response] ? response : self end |