This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Deal < AR | |
attr_reader :minimum_order, :board_lot_size, :unit_value, :allocation_value | |
end | |
# last level allocation rate | |
# planned allocations | |
# deal | |
class DealAllocation < AR | |
belongs_to :deal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy and paste this to the rails console to test your email settings | |
class TestMailer < ActionMailer::Base | |
default :from => ENV['MOORAGE_EMAIL'] | |
def welcome_email | |
mail(:to => "[email protected]", :subject => "Test mail", :body => "Test mail body") | |
end | |
end |