In ruby on rails 3 you can use their ActiveMailer for sending emails.
Also you can install the Mail gem.
I wonder what the difference is?
Does the Mail gem provide things ActiveMailer doesnt?
Should i always install this gem?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The relationship between the two is that the
Mailgem is how Rails 3 implements mail ( replacing the previousTMailapproach in earlier versions). In other words,ActionMaileris the Rails wrapper around theMailgem’s usage within the framework.From a post by the gem’s author:
That post is here. And this screencast might be helpful if you haven’t seen it already.