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('localhost') do |smtp|
smtp.send_message message, 'me@privacy.net', 'te[email protected]' end