开发者 | expandops |
---|---|
更新时间 | 2025年9月11日 21:28 |
PHP版本: | 8.0 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
wp_mail()
through Amazon Simple Email Service (SES) — a highly reliable, scalable cloud-based email platform.
It supports Contact Form 7, Gravity Forms, WPForms, and any other plugin that uses the standard WordPress mailing function. Nanomailer handles the full process of authenticating with AWS, preparing email headers, and securely delivering messages through the SES API.
There is no bloat or unnecessary overhead. It’s built with a focus on speed, clean integration, and minimal configuration. When removed, it leaves behind no database clutter.
ses:SendEmail
permissionwp-config.php
file (replace <KEY>
with actual values):
define( 'NANOMAILER_AWS_ACCESS_KEY', '' );
define( 'NANOMAILER_AWS_SECRET_KEY', '' );
No. Nanomailer only overrides the built-in wp_mail() function. Emails sent via other libraries (like PHPMailer directly) are not handled.
No. Nanomailer does not store, log, or retain any email content or headers after sending.
Never. Emails are only sent when your WordPress site triggers wp_mail().