class NewsletterSubscriptionMailer
Public Instance Methods
welcome(email)
click to toggle source
# File lib/bdd_rails/templates/example/app/mailers/newsletter_subscription_mailer.rb, line 2 def welcome(email) mail(from: 'example@example.com', to: email, body: 'Welcome') end