This commit is contained in:
Javier Casares 2026-01-29 10:10:21 +00:00
commit e12ae9784f
3 changed files with 9 additions and 6 deletions

View file

@ -1,3 +1,7 @@
= 2.0.1 =
* Removed Network requirement from plugin headers to allow single-site activation.
= 2.0.0 = = 2.0.0 =
* Updated compatibility with SMTP (by ROBOTSTXT) plugin 2.0.0. * Updated compatibility with SMTP (by ROBOTSTXT) plugin 2.0.0.

View file

@ -3,10 +3,9 @@
* Plugin Name: Newsletter - SMTP (by ROBOTSTXT) * Plugin Name: Newsletter - SMTP (by ROBOTSTXT)
* Plugin URI: https://git.robotstxt.es/ROBOTSTXT/robotstxt-smtp-newsletter * Plugin URI: https://git.robotstxt.es/ROBOTSTXT/robotstxt-smtp-newsletter
* Description: Integrates ROBOTSTXT SMTP configuration with Newsletter plugin for efficient bulk email delivery with SMTPKeepAlive support. * Description: Integrates ROBOTSTXT SMTP configuration with Newsletter plugin for efficient bulk email delivery with SMTPKeepAlive support.
* Version: 2.0.0 * Version: 2.0.1
* Requires at least: 4.7 * Requires at least: 4.7
* Requires PHP: 7.2 * Requires PHP: 7.2
* Network: true
* Security: robotstxt@robotstxt.es * Security: robotstxt@robotstxt.es
* Author: ROBOTSTXT * Author: ROBOTSTXT
* Author URI: https://www.robotstxt.es/ * Author URI: https://www.robotstxt.es/
@ -26,7 +25,7 @@ if ( ! defined( 'ABSPATH' ) ) {
} }
// Plugin constants. // Plugin constants.
define( 'ROBOTSTXT_SMTP_NEWSLETTER_VERSION', '2.0.0' ); define( 'ROBOTSTXT_SMTP_NEWSLETTER_VERSION', '2.0.1' );
define( 'ROBOTSTXT_SMTP_NEWSLETTER_FILE', __FILE__ ); define( 'ROBOTSTXT_SMTP_NEWSLETTER_FILE', __FILE__ );
define( 'ROBOTSTXT_SMTP_NEWSLETTER_PATH', plugin_dir_path( __FILE__ ) ); define( 'ROBOTSTXT_SMTP_NEWSLETTER_PATH', plugin_dir_path( __FILE__ ) );
define( 'ROBOTSTXT_SMTP_NEWSLETTER_URL', plugin_dir_url( __FILE__ ) ); define( 'ROBOTSTXT_SMTP_NEWSLETTER_URL', plugin_dir_url( __FILE__ ) );

View file

@ -1,13 +1,13 @@
{ {
"name": "Newsletter - SMTP (by ROBOTSTXT)", "name": "Newsletter - SMTP (by ROBOTSTXT)",
"slug": "robotstxt-smtp-newsletter", "slug": "robotstxt-smtp-newsletter",
"version": "2.0.0", "version": "2.0.1",
"author": "ROBOTSTXT", "author": "ROBOTSTXT",
"homepage": "https://git.robotstxt.es/ROBOTSTXT/robotstxt-smtp-newsletter", "homepage": "https://git.robotstxt.es/ROBOTSTXT/robotstxt-smtp-newsletter",
"download_url": "https://git.robotstxt.es/ROBOTSTXT/robotstxt-smtp-newsletter/releases/download/2.0.0/robotstxt-smtp-newsletter-2.0.0.zip", "download_url": "https://git.robotstxt.es/ROBOTSTXT/robotstxt-smtp-newsletter/releases/download/2.0.1/robotstxt-smtp-newsletter-2.0.1.zip",
"requires": "4.7", "requires": "4.7",
"tested": "6.9", "tested": "6.9",
"requires_php": "7.2", "requires_php": "7.2",
"description": "Integrates ROBOTSTXT SMTP configuration with Newsletter plugin for efficient bulk email delivery with SMTPKeepAlive support. Achieves 20-30x faster bulk sending compared to standard wp_mail().", "description": "Integrates ROBOTSTXT SMTP configuration with Newsletter plugin for efficient bulk email delivery with SMTPKeepAlive support. Achieves 20-30x faster bulk sending compared to standard wp_mail().",
"changelog": "<h4>2.0.0 - 2026-01-29</h4><ul><li><strong>Changed:</strong> Updated compatibility with SMTP (by ROBOTSTXT) plugin 2.0.0</li><li><strong>Changed:</strong> Enhanced integration with core SMTP plugin security improvements</li><li><strong>Improved:</strong> Better error handling and validation</li><li><strong>Improved:</strong> Code quality improvements</li></ul><h4>1.0.0 - 2026-01-29</h4><ul><li><strong>Added:</strong> Initial release</li><li><strong>Added:</strong> SMTPKeepAlive support for efficient SMTP batch sending</li><li><strong>Added:</strong> Amazon SES API integration for optimized delivery</li><li><strong>Added:</strong> Dynamic speed calculation from SMTP rate limits (up to 32,400 emails/hour)</li><li><strong>Added:</strong> Batch processing with configurable batch size (up to 2,610 emails per chunk)</li><li><strong>Added:</strong> Automatic FROM address configuration from ROBOTSTXT SMTP</li><li><strong>Added:</strong> HELO hostname configuration for multisite compatibility</li><li><strong>Added:</strong> Resilient error handling - continues sending even if individual recipients fail</li><li><strong>Added:</strong> WP-CLI compatibility for cron execution</li><li><strong>Performance:</strong> 20-30x faster bulk email sending compared to standard wp_mail()</li><li><strong>Performance:</strong> Sends 22 emails in ~7 seconds using SMTPKeepAlive</li></ul>" "changelog": "<h4>2.0.1 - 2026-01-29</h4><ul><li><strong>Changed:</strong> Removed Network requirement from plugin headers to allow single-site activation</li></ul><h4>2.0.0 - 2026-01-29</h4><ul><li><strong>Changed:</strong> Updated compatibility with SMTP (by ROBOTSTXT) plugin 2.0.0</li><li><strong>Changed:</strong> Enhanced integration with core SMTP plugin security improvements</li><li><strong>Improved:</strong> Better error handling and validation</li><li><strong>Improved:</strong> Code quality improvements</li></ul><h4>1.0.0 - 2026-01-29</h4><ul><li><strong>Added:</strong> Initial release</li><li><strong>Added:</strong> SMTPKeepAlive support for efficient SMTP batch sending</li><li><strong>Added:</strong> Amazon SES API integration for optimized delivery</li><li><strong>Added:</strong> Dynamic speed calculation from SMTP rate limits (up to 32,400 emails/hour)</li><li><strong>Added:</strong> Batch processing with configurable batch size (up to 2,610 emails per chunk)</li><li><strong>Added:</strong> Automatic FROM address configuration from ROBOTSTXT SMTP</li><li><strong>Added:</strong> HELO hostname configuration for multisite compatibility</li><li><strong>Added:</strong> Resilient error handling - continues sending even if individual recipients fail</li><li><strong>Added:</strong> WP-CLI compatibility for cron execution</li><li><strong>Performance:</strong> 20-30x faster bulk email sending compared to standard wp_mail()</li><li><strong>Performance:</strong> Sends 22 emails in ~7 seconds using SMTPKeepAlive</li></ul>"
} }