From: Ross Bamford Date: 2005-12-29T21:22:54+09:00 Subject: Re: Need Help Using Net::SMTP On Thu, 29 Dec 2005 11:18:52 -0000, Dan Diebolt wrote: >> You may be getting caught by a spam filter. > I can post email using postie so I can't see a problem with the basic > credentials being sent. There must be some configuration of Net::SMTP > that will allow me to email from Ruby. Anyone have a clue what to do? > Seriously, 250 is the SMTP +OK code so your mail is good to go. My guess is it's getting rejected somewhere down the line. A couple of things you might check: SMTP HELO is often used to determine authorization to relay mail, and it should be the domain you're sending mail from. So from your example I guess you want comcast.net. Most SMTP accounts don't require username/password, and if they do you'll need to specify an auth type too. Check out your account settings in your mailer to see what you want to use. It's the last arg to Net::SMTP.start. Hope that helps, -- Ross Bamford - rosco@roscopeco.remove.co.uk