you are in: codestackercodes [RSS] → tag: pony [RSS]

sending email with pony Delicious Email

show/hide lines
   1  Pony.mail(:to => 'email@provider.com', :via => :smtp, :via_options => {
   2  :address => 'smtp.gmail.com',
   3  :port => '587',
   4  :enable_starttls_auto => true,
   5  :user_name => 'id_gmail',
   6  :password => 'parola_gmail',
   7  :authentication => :plain, # :plain, :login, :cram_md5, no auth by default
   8  :domain => "HELO", # don't know exactly what should be here
   9  },
  10  :subject => 'hi', :body => 'Hello there.')
created by leozera — 07 November 2010 — get a short url — tags: pony ruby embed