views:

20

answers:

1

I want to include a new module to my project where i can send some mails to my client.I don know how to include this emailing module . i searched in net but most of them have told to edit some SMTP.Where can i find this in linux.I am really confused about this.Plz guide me out.I need it urgently.

+1  A: 

You need to setup a mail server like Exim4 on your server. Rails should be able to connect to it without any configuration.

The Rails Guides site has a great tutorial on how to send mail from your application.

Veeti