Reputation: 953
Basically, I am searching for advise to choose best gem for Sending/Receiving e-mails in Rails 4 admin panel. Main requirement would be that gem can't be for specific domain e-mails like Gmail, Yahoo and etc.
At this moment I found mikel/mail What you think of this gem ? Or can you suggest better one ?
Thanks in advance.
Upvotes: 0
Views: 151
Reputation:
There's actionmailer, which will already by bundled with your Rails installation. Integration with your Rails app would be easier with actionmailer
than any 3rd party gems, since that's what it was designed for.
Upvotes: 2