vote up 2 vote down star

Hello,

All I want is to send emails from my ruby scripts, over SMTP using SSL.

I only find examples of doing it from Rails, or for Gmail with TLS.

I found people talking about SMTPS support with ruby 1.8.5, but the libdoc doesn't mention it.

Anyone with an example of sending mail over SMTP with SSL, on port 465?

ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]
flag

5 Answers

vote up 2 vote down

How about pony ?
gem install pony.
http://github.com/adamwiggins/pony/tree/master
or I did not understand your question ?

I hope it help you.
Thanks
tknv/

link|flag
vote up 0 vote down

You probably already know about the Net::SMTP standard library

Regarding the SSL part, which doesn't seem to be supported out of the box, I found a couple of possible pointers:

link|flag
I already tried those examples, and work great with gmail, but I can't get them working with regular SMTP over SSL on my ISP accounts. – Ruby n00b Apr 2 at 12:18
vote up 0 vote down

The only interesting thing I've heard of in programmatic email recently is Lamson: http://lamsonproject.org/

It's Python, not Ruby, but you can call Python from Ruby if you want to (here's one way: http://www.goto.info.waseda.ac.jp/~fukusima/ruby/python-e.html)

link|flag
vote up 0 vote down

You could use a third party open source command line program like mailsend (http://www.muquit.com/muquit/software/mailsend/mailsend.html) to do your dirty work for you. Just pipe some output to it in the format it expects.

link|flag
vote up 0 vote down

this might help http://blog.segment7.net/articles/2009/07/08/smtp_tls-1-0-3

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.