Firstly, enable Sendgrid on your Heroku app:
$ heroku addons:add sendgrid:starterThen, run:
$ heroku configthis will reveal the SENDGRID_PASSWORD and SENDGRID_USERNAME values which you need for the next step:
SENDGRID_PASSWORD => dju45yhb SENDGRID_USERNAME => app37263528@heroku.comNow go to the Configuration pages in your Spree admin interfaces and add a new mail method. Take a look at this screenshot to see what settings I used:
Note that you now need to select 'plain' smtp auth type instead of 'login', per sendgrid docs.
ReplyDeleteThanks for this post.