From: Max Payne Date: 2008-02-18T00:14:56+09:00 Subject: Re: smtp - from field shows up blank in client On Feb 17, 3:00 am, Mohit Sindhwani wrote: > Dan Zwell wrote: > > Max Payne wrote: > >> 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', > >> 'usern...@mydomain.com', 'password', :login) { |smtp| > >>   smtp.send_message( msg,  'f...@mydomain.com', > >> ['towhoe...@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? > > > Hello Max, > > > I think the from/to/subject needs to be part of your message, like this: > > msg = < > From: Me > > To: You > > Subject: This email is a test. > > > This is the start of the message body... > > EOF > > > Good luck, > > Dan > > Also, if you're missing the date, you'll need to add that in.  Check out > the example on my page here:http://notepad.onghu.com/2007/3/26/sending-email-with-ruby > > Cheers, > Mohit. > 2/17/2008 | 4:00 PM.- Hide quoted text - > > - Show quoted text - Thanks , putting it all in the message did the trick. Mohit thanks for the great example. Now I need to figure out how to CC. The send_message method takes a to and a from...