Re: Email notifications are beating me...
So I must've been fat fingering something earlier... because I got the gmail smtp stuff working with the following. I'm still having issues with our internal smpt server. I'll keep banging on that and report back here if/when I figure it out.
Thanks for the help...
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "gmail.com",
:authentication => :plain,
:user_name => "the_username",
:password => "the_password"
}