Skip to content

Instantly share code, notes, and snippets.

@rob-race
Created October 9, 2017 20:30
Show Gist options
  • Save rob-race/d32f1bc16a076717890bcbbfebe6fa2f to your computer and use it in GitHub Desktop.
Save rob-race/d32f1bc16a076717890bcbbfebe6fa2f to your computer and use it in GitHub Desktop.
class EmailReminderMailer < ApplicationMailer
def reminder_email(user, team)
@user = user
@team = team
reply_to = "'Standup App' <#{'development.' if Rails.env.development?}\
standup.#{@user.hash_id}@app.yourdomain.com>"
mail(
to: @user.email,
subject: "#{team.name} Stanup Reminder!",
reply_to: reply_to
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment