eighteen73 / wp-cli-tools

WP-CLI commands to assist our development workflow
1 stars 0 forks source link

Use a less intrusive SMTP solution for new sites #17

Closed edjeavons closed 5 months ago

edjeavons commented 8 months ago

Easy WP SMTP has become visually bloated (heavy branding, nag screen & setup wizard on first run, plugin upselling) so I'm swapping it for something that better matches our approach to a website's CMS.

We need something that quietly sits in the background and isn't too obvious to most CMS users because it's confusing configuration for the majority.

My preferences:

With all those requirements in mind, WordPress Simple SMTP looks ideal. Unfortunately it's recently entered a bugfix-only state but if we have any issues/requirements we can start working from our own fork.

edjeavons commented 8 months ago

Reopening because this needs a little extra work to add config to development.php during installation.

Suggest:

SMTP_HOST=127.0.0.1
SMTP_PORT=1025
SMTP_AUTH=0
SMTP_SEC='off'

This seems preferable vs. relying on Satellite to disable mail sending entirely. All of our team tends to use Mailhog/Mailpit on port 1025 to catch emails locally.

edjeavons commented 5 months ago

Resolved