Skip to content

Instantly share code, notes, and snippets.

@michalg-
Created September 8, 2014 12:41
Show Gist options
  • Save michalg-/ae3c747ec7fb3330bc7a to your computer and use it in GitHub Desktop.
Save michalg-/ae3c747ec7fb3330bc7a to your computer and use it in GitHub Desktop.
begin
smtp = Net::SMTP.new(@website_setting.smtp_server, @website_setting.smtp_port)
smtp.enable_starttls
smtp.start(@website_setting.smtp_domain, @website_setting.smtp_user_name, @website_setting.smtp_password, :plain)
rescue Net::SMTPAuthenticationError
#rescue here
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment