WP Manifestindependent plugin directory
manifest / email / suckless-wp-net-smtp

Suckless WordPress Net_SMTP

WordPress support for Net_SMTP library

by Valerio Bozzolan · github.com/valerio-bozzolan/suckless-wp-net-smtp

1stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/valerio-bozzolan/suckless-wp-net-smtp/archive/refs/heads/master.zip

From the readme

Suckless WordPress NetSMTP bridge It just allows your WordPress installation to send e-mails through a MTA, using the NetSMTP library that it's already packaged into your distribution. This plugin is just ~133 lines of code. The missing of a feature is a feature. Installation sudo apt install php-net-smtp Then go into your wp-config.php and fill these: define( 'WPNETSMTPHOST', 'mail.example.com' ); define( 'WPNETSMTPPORT', '465' ); define( 'WPNETSMTPAUTH', 'PLAIN' ); define( 'WPNETSMTPFROM', 'noreply@example.com' ); define( 'WPNETSMTPPASS', 'super-secret' ); Then proceed to install this plugin as every WordPress plugin. You know.

Read the full README on GitHub →