Skip to content

Commit

Permalink
Updated settings to relect general gmail account settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
aantix committed Nov 19, 2011
1 parent cf3d91c commit 4c2e635
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions config.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
SYMBOLS = ['VTSMX','NAESX','VEIEX','VEURX','VPACX','VWEHX','VFSTX','VIPSX','VGSIX','VGPMX']

# http://codelikezell.com/how-to-send-email-with-ruby-and-gmail/
SMTP_OPTIONS = {:server => "example.com",
:username => "username",
:password => "password",
:from => "fund-anaylsis@localhost",
:tls => false}
# Be sure to enable pop3 if you're going to be mailing with Gmail's SMTP server.
# https://mail.google.com/support/bin/answer.py?answer=13273
SMTP_OPTIONS = {:address => "smtp.gmail.com",
:domain => 'gmail.com',
:username => "your.gmailaccount@gmail.com",
:password => "yourpassword",
:port => 587,
:from => "your.gmailaccount@gmail.com",
:subject => "Fund Rebalance Report",
:tls => true}

0 comments on commit 4c2e635

Please sign in to comment.