In spree admin panel under configuration menu, I configured mail smtp, port and etc., after creating new mail method I press test mail button, I got following alert message \"Te
Please check that
Mail delivery in Spree is disabled by default. You can enable it in two ways.
First, if you need to keep your default Rails app action mailer configs you need to tell Spree to not override them by setting the override_actionmailer_config
option to false
.
You should also tell Spree which email should go on the header from using the mails_from
option. A typical spree initializer which disables all Spree default mail settings and interceptor looks like this:
Spree.config do |config|
config.override_actionmailer_config = true
config.mails_from = "no-reply@yourdomain.com"
end
refer spree mail delivery
Please let me know