Add scheduled email feature for reminders
This commit is contained in:
6
app/mailers/reminder_mailer.rb
Normal file
6
app/mailers/reminder_mailer.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
class ReminderMailer < ApplicationMailer
|
||||
def schedule_email(reminder, recipient)
|
||||
@reminder = reminder
|
||||
mail to: recipient, subject: 'Reminder'
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user