spree-contrib / spree_drop_ship

Spree Drop Shipping Extension
BSD 3-Clause "New" or "Revised" License
104 stars 120 forks source link

loading sample data attempts to send email #17

Closed jsqu99 closed 11 years ago

jsqu99 commented 11 years ago
$ rake spree_sample:suppliers
Creating Suppliers...
rake aborted!
Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true

after adding: config.action_mailer.default_url_options = { :host => 'localhost' } to application.rb, got:

Creating Suppliers...
rake aborted!
Connection refused - connect(2)

b/c it is trying to send a welcome mail do to:

after_create :send_welcome, if: -> { SpreeDropShip::Config[:send_supplier_email] }

in the supplier class.