Displaying 12 results from an estimated 12 matches for "enable_starttls_auto".
2009 Apr 13
5
Ruby 1.8.7 + Rails 2.3.2 + TLS = Where's the documentation?
...ion_mailer.raise_delivery_errors = true
# set delivery method to :smtp, :sendmail or :test
config.action_mailer.delivery_method = :smtp
# these options are only needed if you choose smtp delivery
config.action_mailer.smtp_settings = {
:address => ''smtp.gmail.com'',
:enable_starttls_auto => true,
:port => 587,
:domain => ''digiaid.com.au'',
:authentication => :login,
:user_name => ''info-fGHeCWgaIIjvnOemgxGiVw@public.gmane.org'',
:password => ''secret''
}
--
Posted via http://w...
2011 Feb 18
0
ActionMailer: hostname was not match with the server certificate
...=> "smtp.gmail.com",
:port => 587,
:domain => "mydomain.com",
:user_name => "<username>",
:password => "<password>",
:authentication => "plain",
:enable_starttls_auto => true
}
But this configuration doesn''t. It gives "hostname was not match with
the server certificate"
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "some_other_server.com",
:port =&g...
2012 Feb 14
6
SMTP problem.
Hey all, well I am trying to send emails to newly created users but I
have a problem.
In the rails log it states that the email has been sent but the email is
never actually received so obviously there is a problem.
I have noticed one in particular and I don''t understand how to fix it.
Once I create the user I get the following error message:
Net::SMTPAuthenticationError (535-5.7.1
2010 Nov 09
3
Rails 3 Action Mailer issue
...p.gmail.com",
:port => "587",
:domain => "test.com",
:user_name => "support-J0of1frlU80@public.gmane.org",
:password => "secret",
:authentication => "plain",
:enable_starttls_auto => true
}
and my mailer class looks like,
class TestMailer < ActionMailer::Base
def registration_confirmation(user)
@user = user
mail(:to => "#{@user.capitalized_name} <#{@user.email}>", :subject
=> "Welcome", :from => ''registration-do-...
2011 Dec 12
1
Errno::ECONNREFUSED (Connection refused - connect(2)): sending email in production
...,
using :
ActionMailer::Base.smtp_settings = {:address =>
"mail.mydomain.com",:port => 587,:domain =>
"mydomain.com",:authentication => :login, :user_name =>
"myself-3Q2Tfjf0mexWk0Htik3J/w@public.gmane.org",:password =>
"xxxxxxxxxxxx",:enable_starttls_auto => false}
class MyMailer < ActionMailer::Base
def test_email
@recipients = "myself-BUHhN+a2lJ4@public.gmane.org"
@from = "noreply-3Q2Tfjf0mexWk0Htik3J/w@public.gmane.org"
@subject = "this is a subject"
@body = "this is the body"
end
end
>> MyMai...
2011 Apr 22
0
ActionMailer : Not able to send out mails
...fig.action_mailer.delivery_method = :smtp;
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:user_name => "my_id-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org",
:password => "secret",
:authentication => :plain,
:enable_starttls_auto => true,
:domain => "localhost",
}
An email is being generated by the call to the mailer model from one
of my controllers. However, i am not able to send or receive any
emails on gmail.
I am on ruby 1.8.7, rails 2.3.5.
There are no exceptions, just that no emails are being ex...
2013 Mar 09
1
Rails- Devise- confirmable- confirmation email not received
In an application I use devise authentication. I added confirmable.During
sign up, message is that email has been sent. But email is not received in
my gmail account. How can I solve this problem. Do I need to add other
options as we do with actionmailer such as gmail port address, or sendmail
such things. Please help.
--
You received this message because you are subscribed to the Google
2013 Sep 11
2
Mandrill mail problem
Hello All,
I am trying to use Mandrill api in my rails app.
I am getting this error every time:-
Net::SMTPServerBusy (401 4.1.7 Bad sender address syntax)
I am using Ruby - 1.9.3, rails - 3.2.8, Thin server, & Ubuntu 12.10.
in Gemfile:-
gem "mandrill-api", "~> 1.0.45"
gem ''mandrill_mailer''
application.rb:-
config.action_mailer.default_url_options
2012 Jul 20
2
scheduling mails in 2.3.8
Hi all,
How can i send mails in rails 2.3.8 and schedule them when i need it.
i''ve tried with whenever gem but it did not work properly . can any one
help me out .
thanks in advance
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2010 Jun 13
4
internal server error(500) when attempting to sendmail
Hello,
I have an application that, when you create an appointment it sends an
email to the client to say someone has just booked.
Locally, this works fine (i''m just using sendmail)
Locally - all email tests have come through - no problem.
However - when I copy all the files onto the server and attempt to
create a booking, it comes up with the 500 page. The error below if
taken from my
2012 Oct 08
11
Problems setting gmail mail
Hello,
as attachment my problems concerning gmail Mailer errors in Rails. I
hope anyone can help me out with the problem?
If there is extra information needed, please tell me what you need more
to help me out of my problems!
Greetings!
Attachments:
http://www.ruby-forum.com/attachment/7790/errnoECONNREFUSED.jpg
--
Posted via http://www.ruby-forum.com/.
--
You received this message
2008 Apr 11
7
Net::SMTPAuthenticationError
Hey guys,
I want to send an email via ROR and I have put this code at the very end
in the config/environment.rb file-
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.logger = nil
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.smtp_settings = {
:address => "[my smtp server]",
:port => 25,
:domain