Class: Workarea::EmailContentSeeds

Inherits:
Object
  • Object
show all
Defined in:
app/seeds/workarea/email_content_seeds.rb

Instance Method Summary collapse

Instance Method Details

#performObject



3
4
5
6
7
8
9
# File 'app/seeds/workarea/email_content_seeds.rb', line 3

def perform
  puts 'Adding content emails...'
  Content::Email.create!(type: 'order_confirmation', content: 'Thank you for shopping with us!')
  Content::Email.create!(type: 'order_reminder', content: "You didn't finish checking out!")
  Content::Email.create!(type: 'account_creation', content: 'Welcome!')
  Content::Email.create!(type: 'password_reset', content: 'Reset Your Password')
end