Skip to content

Instantly share code, notes, and snippets.

@8parth
Created March 23, 2017 05:46
Show Gist options
  • Save 8parth/9dbe90d57a265404e0336c337b9e7795 to your computer and use it in GitHub Desktop.
Save 8parth/9dbe90d57a265404e0336c337b9e7795 to your computer and use it in GitHub Desktop.
user mailer in rails 4
class UserMailer < ApplicationMailer
default from: "[email protected]"
def welcome(email, name, message)
@email = email
@name = name
@message = message
mail to: @email, subject: "Welcome to Example."
end
def sign_up(email, name, message)
@email = email
@name = name
@message = message
mail to: @email, subject: "Confirm your email!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment