Created
April 8, 2014 15:07
-
-
Save manlycode/10139395 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def seller_confirmation(order, seller) | |
@market = order.market | |
@order = SellerOrder.new(order, seller) # Selling users organizations only see | |
mail( | |
to: lambda { seller.users.map(:email) }, | |
subject: "You have a new order!" | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment