Action mailer

i want how to recieve mails to inbox

···

--
Posted via http://www.ruby-forum.com/.

You need to configure your action mailer in the application else you can
aslo do with plain ruby using net/http.

···

On Tue, Jul 22, 2008 at 2:10 PM, Sujith Gangaraju < sujithkumar@srishtisoft.com> wrote:

i want how to recieve mails to inbox
--
Posted via http://www.ruby-forum.com/\.

kranthi reddy wrote:

You need to configure your action mailer in the application else you can
aslo do with plain ruby using net/http.

On Tue, Jul 22, 2008 at 2:10 PM, Sujith Gangaraju <

any detailed description about it

···

--
Posted via http://www.ruby-forum.com/\.

You need to generate an actionmailer using ruby script/generate mailer <name
of the mailer>
This will generate the mailer required files for you.
Once you are done with that you need to configure with the evnironment.rb
file
ActionMailer::Base.server_settings{
:address => 'required address',
:port =>'port number',
:domian => 'which mailer domain you are using',
:authentication => ':login,
:usernmae =>'username',
:password => 'passwrod'
}
Once these are configured you need to write the mailer code in it.You can
also refer to page 411 from the book agile web developement which contains a
chapter regarding this mailer functionality
kranthi.

···

On Tue, Jul 22, 2008 at 3:26 PM, Sujith Gangaraju < sujithkumar@srishtisoft.com> wrote:

kranthi reddy wrote:
> You need to configure your action mailer in the application else you can
> aslo do with plain ruby using net/http.
>
>
> On Tue, Jul 22, 2008 at 2:10 PM, Sujith Gangaraju <

any detailed description about it

--
Posted via http://www.ruby-forum.com/\.