require 'net/smtp'
message = <<MESSAGE_END
From: Private Person <[email protected]>
To: Author of Beginning Ruby <[email protected]>
Subject: SMTP e-mail test
This is a test e-mail message.
MESSAGE_END
Net::SMTP.start('mail.your-domain.com', 25, 'localhost', 'username', 'password', :plain)
do |smtp|
smtp.send_message message, 'me@privacy.net', 'te[email protected]'
end
|
|