I am creating a gem, to send notitifications
Notifications are sent to user using his email address, so to send notification am going to send text-email to user.
So how to send email from gem? as I need to inherit the class from Actionmailer::Base
Module ABC
class notify < ActionMailer::Base
def send_mail
end
end
end
Do I need to add any gem in my gemspec file? rails
or actionmailer
gem?
Thanks in advance