Pony ist in Ruby 1.9 kaputt. Kann mir jemand eine Alternative empfehlen, damit ich E-Mails über mein Gmail-Konto senden kann? Vielen Dank
Antworten
Zu viele Anzeigen?
Schlermie
Punkte
71
Pony funktioniert für mich in Ruby 1.9, und ich bin auch mit dem gmail SMTP-Server. Hier ist, wie ich es eingerichtet habe...
require 'pony'
Pony.mail(:to => 'real_mail@yahoo.com', :via => :smtp, :via_options => {
:address => 'smtp.gmail.com',
:port => '587',
:enable_starttls_auto => true,
:user_name => 'id_gmail',
:password => 'parola_gmail',
:authentication => :plain,
:domain => "HELO",
},
:subject => 'Test email', :body => 'Test for Pony email through gmail SMTP server.')