Here in this code what shud be the value of "username" and "password"
--
Posted via http://www.ruby-forum.com/.
I don't know; how do you send email? What are your username and
password? You'll also want to change the address and domain to fit your
needs. If you don't know, ask your IT department, or your ISP, or your
webhost.
ActionMailer::Base.delivery_method = :smtpActionMailer::Base.smtp_settings = {:port => 587,:authentication => :plain,:enable_starttls_auto => true,:password => "sandip"}
--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Sir for your above mentioned thing well is it necessary to know the
domain and address from my ISP??
i cant send an email from my application without this..
Also i would like to mention that the email information is displayed in
the web server but it is not routed to the mentioned email address..so
wat should i do?
--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Sir,
I would surely like to know what i have to make changes in the
environment.rb file..
My email information is available in the development.log file..
Sir my environment.rb file has foll contents:
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com" ,
:port => 25,
:domain => "gmail.com" ,
:authentication => :login,
:enable_starttls_auto => true,
:user_name => "mukesh" ,
:password => "123456"
}
Here user name is user name created by the user and not email id..
so what schanges chould i make to this file?
ActionMailer::Base.delivery_method = :smtpActionMailer::Base.smtp_settings = {
Let me know if still problem!:port => 587,:authentication => :plain,:enable_starttls_auto => true,:password => "123456"}
--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.