This is my first app using RefineryCMS. The way I have sent mail from applications in the past is not currently work with my refinery app.
I have tried numerous ways of doing this by way of numerous searches on the internet and I cannot make this work.
Currently, here is what I have:
In the environment.rb file I have this:
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true,
:address => 'smtp.sendgrid.net',
:port => '25',
:authentication => :plain,
:user_name => 'myusername@mydomain.com',
:password => 'mypassword',
:domain => 'mydomain'
}
I have also tried:
ActionMailer::Base.smtp_settings = {
:enable_starttls_auto => true,
:address => 'smtp.sendgrid.net',
:port => '25',
:authentication => :plain,
:user_name => 'myusername@mydomain.com',
:password => 'mypassword',
:domain => 'mydomain'
}
I have tried putting these settings in the production and development classes. Tried locally and on heroku but I just can't get the built in inquiry/contact form to send out the notifications emails and I have no idea why it won't work.
Like I said earlier, I have tried every solution (they are all very similar) I can find for this but can't make it work. If somebody could please tell what I am doing wrong and what, exactly, it is I need to do, that would be awesome.
Thanks in advance, ~Mike