Changeset 3385436
- Timestamp:
- 10/27/2025 08:05:47 PM (4 months ago)
- Location:
- simple-smtp-by-maileroo
- Files:
-
- 14 added
- 2 edited
-
tags/1.1.4 (added)
-
tags/1.1.4/LICENSE (added)
-
tags/1.1.4/assets (added)
-
tags/1.1.4/assets/global_styles.css (added)
-
tags/1.1.4/assets/icon.svg (added)
-
tags/1.1.4/assets/logo.svg (added)
-
tags/1.1.4/assets/scripts.js (added)
-
tags/1.1.4/assets/styles.css (added)
-
tags/1.1.4/components (added)
-
tags/1.1.4/components/home_page.php (added)
-
tags/1.1.4/languages (added)
-
tags/1.1.4/languages/maileroo.pot (added)
-
tags/1.1.4/maileroo.php (added)
-
tags/1.1.4/readme.txt (added)
-
trunk/maileroo.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-smtp-by-maileroo/trunk/maileroo.php
r3379487 r3385436 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.16 * Version: 1.1.4 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.1");20 define("SSBM_VERSION", "1.1.4"); 21 21 22 22 … … 204 204 foreach ($headers as $header) { 205 205 if (empty($header)) continue; 206 // todo add bcc and cc headers207 206 if (preg_match('/^Reply-To: (.*)$/i', $header, $matches)) { 208 207 $replyto = trim($matches[1]); 209 208 if (is_email($replyto)) $payload['reply_to'] = array('address' => $replyto); 210 } elseif (substr( $header, 0, 5) == 'From:') {209 } elseif (substr(strtolower($header), 0, 5) == 'from:') { 211 210 $force = get_option('ssbm_force_from'); 212 211 if (empty($force)) { … … 214 213 $payload['from'] = $from[0]; 215 214 } 216 } elseif (substr( $header, 0, 3) == 'Cc:') {215 } elseif (substr(strtolower($header), 0, 3) == 'cc:') { 217 216 $payload['cc'] = ssbm_parse_from_header($header); 218 217 219 } elseif (substr( $header, 0, 4) == 'Bcc:') {218 } elseif (substr(strtolower($header), 0, 4) == 'bcc:') { 220 219 $payload['bcc'] = ssbm_parse_from_header($header); 221 220 -
simple-smtp-by-maileroo/trunk/readme.txt
r3379487 r3385436 5 5 Requires at least: 4.6 6 6 Tested up to: 6.8.2 7 Stable tag: 1.1. 3.17 Stable tag: 1.1.4 8 8 License: GPL-3.0 9 9 License URI: https://www.gnu.org/licenses/gpl.html … … 89 89 == Changelog == 90 90 91 92 = v1.1.4 93 94 * Improvement: Cc, Bcc and From: headers are now also recognized when spelled in capital or lower case. 95 91 96 = v1.1.3.1 = 92 97 93 98 * Bug Fix: Fixed a problem with misspelled reply-to headers. 94 99 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.100 = v1.1.3 96 101 97 * Improvement: Voor de API102 * Improvement: 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. 98 103 99 104 = v1.1.2 =
Note: See TracChangeset
for help on using the changeset viewer.