method
send_message
v2_5_5 -
Show latest stable
- Class:
Net::SMTP
send_message(msgstr, from_addr, *to_addrs)public
Sends msgstr as a message. Single CR (“r”) and LF (“n”) found in the msgstr, are converted into the CR LF pair. You cannot send a binary message with this method. msgstr should include both the message headers and body.
from_addr is a String representing the source mail address.
to_addr is a String or Strings or Array of Strings, representing the destination mail address or addresses.
Example
Net::SMTP.start('smtp.example.com') do |smtp| smtp.send_message msgstr, '[email protected]', ['[email protected]', '[email protected]'] end
Errors
This method may raise: