ActionMailer

Hi    I tried to send mail from application and succeed ..Since I am new to this I have a doubt to be cleared regarding this..Should I generate one action mailer (ruby script/generate mailer name)for the whole application or can I generate differnrt ones?Which is the correct method?

Thanks in advance Sijo

You can generate several ActionMailers. It may depend on your app what's the best way to organize them. In most cases we use only one, but having more may help to structure your code.

Hi    Thanks for your reply Sijo