Plugin Directory

Changeset 3379487


Ignore:
Timestamp:
10/16/2025 01:17:37 PM (6 weeks ago)
Author:
finalwebsites
Message:

Misspelled reply-to header issue

Location:
simple-smtp-by-maileroo
Files:
14 added
2 edited

Legend:

Unmodified
Added
Removed
  • simple-smtp-by-maileroo/trunk/maileroo.php

    r3377563 r3379487  
    44 * Plugin URI: https://maileroo.com/
    55 * 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
    77 * Text Domain: maileroo
    88 * Domain Path: /languages/
     
    1818} // Exit if accessed directly
    1919
    20 define("SSBM_VERSION", "1.1.3");
     20define("SSBM_VERSION", "1.1.3.1");
    2121
    2222
     
    205205            if (empty($header)) continue;
    206206            // todo add bcc and cc headers
    207             if (preg_match('/^Reply-To: (.*)$/', $header, $matches)) {
     207            if (preg_match('/^Reply-To: (.*)$/i', $header, $matches)) {
    208208                $replyto = trim($matches[1]);
    209209                if (is_email($replyto)) $payload['reply_to'] = array('address' => $replyto);
  • simple-smtp-by-maileroo/trunk/readme.txt

    r3377563 r3379487  
    55Requires at least: 4.6
    66Tested up to: 6.8.2
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.3.1
    88License: GPL-3.0
    99License URI: https://www.gnu.org/licenses/gpl.html
     
    8989== Changelog ==
    9090
     91= v1.1.3.1 =
     92
     93* Bug Fix: Fixed a problem with misspelled reply-to headers.
     94
    9195= 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.
    9296
Note: See TracChangeset for help on using the changeset viewer.