Linux 软件免费装

Config Email SMTP

开发者 comzeradd
更新时间 2024年11月11日 16:36
捐献地址: 去捐款
PHP版本: 5.0 及以上
WordPress版本: 6.7
版权: GPLv3 or later
版权网址: 版权信息

标签

email smtp

下载

0.2.0 0.1.0 0.3.0

详情介绍:

This plugin is relying just on your wp-config.php file. It uses smtp connection details you will set up there to configure WordPress to relay all outgoing emails through that email server. Background There are plenty of similar type of plugins out there. Most of them are not focused on relaying emails to an SMTP server, but rather supporting specific mail services. But the main incentive for this was the fact that the official Wordpress docker image doesn't have support for sending out emails (eg. "forgot password").

安装:

All you have to do is copy-paste the lines below at your wp-config.php and adjust the variables with the proper values for the SMTP server you want to use. /* SMTP configuration */ define('SMTP_HOST', 'mail.example.com'); // Mail server hostname define('SMTP_PORT', 25); // SMTP port number (25, 465 or 587) define('SMTP_SECURE', 'ssl'); // Encryption system to use (ssl or tls) define('SMTP_USERNAME', 'myusername'); // SMTP Authentication Username define('SMTP_PASSWORD', 'mypassword'); // SMTP Authentication Password define('SMTP_FROMMAIL', 'noreply@example.com'); // From email address define('SMTP_FROMNAME', 'WordPress'); // From email name