From: Max Payne Date: 2008-02-17T16:09:58+09:00 Subject: smtp - from field shows up blank in client Hello, I'm using the following code which is working fine except the from address comes up blank. smtp = Net::SMTP.start('smtp.mydomain.com', 587, 'mydomain.com', 'username@mydomain.com', 'password', :login) { |smtp| smtp.send_message( msg, 'from@mydomain.com', ['towhoever@gmail.com'] ) } The email goes out but it doesn't tell me who it's from. In gmail the from is (Unknown Sender), In yahoo or others it's blank. What am I missing?