Changeset 3379487
- Timestamp:
- 10/16/2025 01:17:37 PM (6 weeks ago)
- Location:
- simple-smtp-by-maileroo
- Files:
-
- 14 added
- 2 edited
-
tags/1.1.3.1 (added)
-
tags/1.1.3.1/LICENSE (added)
-
tags/1.1.3.1/assets (added)
-
tags/1.1.3.1/assets/global_styles.css (added)
-
tags/1.1.3.1/assets/icon.svg (added)
-
tags/1.1.3.1/assets/logo.svg (added)
-
tags/1.1.3.1/assets/scripts.js (added)
-
tags/1.1.3.1/assets/styles.css (added)
-
tags/1.1.3.1/components (added)
-
tags/1.1.3.1/components/home_page.php (added)
-
tags/1.1.3.1/languages (added)
-
tags/1.1.3.1/languages/maileroo.pot (added)
-
tags/1.1.3.1/maileroo.php (added)
-
tags/1.1.3.1/readme.txt (added)
-
trunk/maileroo.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-smtp-by-maileroo/trunk/maileroo.php
r3377563 r3379487 4 4 * Plugin URI: https://maileroo.com/ 5 5 * Description: Simplify WordPress email delivery with universal SMTP compatibility, including Maileroo, SendGrid, Mailgun, and more - all-in-one SMTP plugin for reliable, user-friendly email integration. 6 * Version: 1.1.3 6 * Version: 1.1.3.1 7 7 * Text Domain: maileroo 8 8 * Domain Path: /languages/ … … 18 18 } // Exit if accessed directly 19 19 20 define("SSBM_VERSION", "1.1.3 ");20 define("SSBM_VERSION", "1.1.3.1"); 21 21 22 22 … … 205 205 if (empty($header)) continue; 206 206 // todo add bcc and cc headers 207 if (preg_match('/^Reply-To: (.*)$/ ', $header, $matches)) {207 if (preg_match('/^Reply-To: (.*)$/i', $header, $matches)) { 208 208 $replyto = trim($matches[1]); 209 209 if (is_email($replyto)) $payload['reply_to'] = array('address' => $replyto); -
simple-smtp-by-maileroo/trunk/readme.txt
r3377563 r3379487 5 5 Requires at least: 4.6 6 6 Tested up to: 6.8.2 7 Stable tag: 1.1.3 7 Stable tag: 1.1.3.1 8 8 License: GPL-3.0 9 9 License URI: https://www.gnu.org/licenses/gpl.html … … 89 89 == Changelog == 90 90 91 = v1.1.3.1 = 92 93 * Bug Fix: Fixed a problem with misspelled reply-to headers. 94 91 95 = v1.1.3 = Support for "Cc:" and "Bcc:" headers was still missing when calling the Maileroo Email API v2. This is now possible for both types of headers. 92 96
Note: See TracChangeset
for help on using the changeset viewer.