hi i am new on rails any one can tell me about a simple how to send a simple email on gmail i followed tutorial point.com but all in vain error 530 or many about actionmailer_tls i resolved but could not make a simple email pls tell me a application to send a simple email on gmail on windows 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Following settings that needs to be added in environment.rb
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.default_content_type = "text/html"
ActionMailer::Base.smtp_settings = {
  :address => "smtp.gmail.com",
  :port => 587,
  :authentication => :plain,
  :enable_starttls_auto => true,
  :user_name => "sandip-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org",
  :password => "password"
}
On 1/5/10, ashu <rajeevsharma86-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
wrote:> hi i am new on rails
>
> any one can tell me about a simple how to send a simple email on gmail
> i followed
> tutorial point.com but all in vain error 530 or many about
> actionmailer_tls i resolved but could not make a simple email pls tell
> me a application to send a simple email on gmail on windows
> 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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To unsubscribe from this group, send email to
>
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
>
>
-- 
Sandip
---
www.funonrails.com
-- 
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.
thnx i used it message sent successfully but there is no msg in my inbox On Thu, Jan 7, 2010 at 2:47 PM, Sandip Ransing <san2821-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Following settings that needs to be added in environment.rb > > ActionMailer::Base.delivery_method = :smtp > ActionMailer::Base.default_content_type = "text/html" > > ActionMailer::Base.smtp_settings = { > :address => "smtp.gmail.com", > :port => 587, > :authentication => :plain, > :enable_starttls_auto => true, > :user_name => "sandip-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org", > :password => "password" > } > > > On 1/5/10, ashu <rajeevsharma86-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > hi i am new on rails > > > > any one can tell me about a simple how to send a simple email on gmail > > i followed > > tutorial point.com but all in vain error 530 or many about > > actionmailer_tls i resolved but could not make a simple email pls tell > > me a application to send a simple email on gmail on windows > > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > > For more options, visit this group at > > http://groups.google.com/group/rubyonrails-talk?hl=en. > > > > > > > > > -- > Sandip > > --- > www.funonrails.com > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > > >-- Regards: Rajeev sharma +919813270707 -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
im having similar issues
i see message in terminal window, but no email
is there another log file or error to look for?
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.default_content_type = "text/html"
ActionMailer::Base.smtp_settings = {
    :address => "smtp.gmail.com",
    :port => 587,
    :authentication => :plain,
    :user_name =>
"gmail_username-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org",
    :password => "gmail_password"
}
-- 
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.
On Tue, Jan 12, 2010 at 4:55 PM, dan <mr.dan.marks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> im having similar issues > i see message in terminal window, but no email > is there another log file or error to look for? > > ActionMailer::Base.delivery_method = :smtp > ActionMailer::Base.default_content_type = "text/html" > ActionMailer::Base.smtp_settings = { > :address => "smtp.gmail.com", > :port => 587, > :authentication => :plain, > :user_name => "gmail_username-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org", > :password => "gmail_password" > }If you also set raise_delivery_errors => true then actionmailer will actually blow up with a stack trace instead of just pretending everything worked. -- Curtis Cooley curtis.cooley-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org home:http://curtiscooley.com blog:http://ponderingobjectorienteddesign.blogspot.com ==============Leadership is a potent combination of strategy and character. But if you must be without one, be without the strategy. -- H. Norman Schwarzkopf -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
awesome...
i am using the restful_authentication plugin
modified the mail.rb page to:
ActionMailer::Base.delivery_method = :smtp
<b>ActionMailer::Base.raise_delivery_errors = true</b>
ActionMailer::Base.default_content_type = "text/html"
ActionMailer::Base.smtp_settings = {
    :address => "smtp.gmail.com",
    :port => 587,
    <b>:enable_starttls_auto => true,</b>
    :user_name =>
"gmail_username-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org",
    :password => "gmail_password"
}
now the email / login system is working
thanks curtis
-- 
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.