Skip to content

Instantly share code, notes, and snippets.

@dgobaud
Created April 16, 2014 18:35
Show Gist options
  • Save dgobaud/c163e3580406f55942a8 to your computer and use it in GitHub Desktop.
Save dgobaud/c163e3580406f55942a8 to your computer and use it in GitHub Desktop.
smtp = Net::SMTP.new('smtp.stanford.edu', 465)
smtp.open_timeout = 5
smtp.read_timeout = 3
smtp.debug_output = true
smtp.enable_ssl
smtp.start('helodomain', 'myusername', 'passssword', :plain)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment