Mailer Engine in Rails app

Thursday, March 5th, 2009

By having you application be able to send mail to its users is one of the most important feature that every apps should do and it’s also kinda basic stuff to setup too! Here’s a little note when you are doing it:
Normally from your rails app root:

1
$sudo script/generate mailer AppNotifier signup

This will add a signup [...]