-
-
Save dgobaud/c163e3580406f55942a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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