Plugin Directory


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

Misspelled reply-to header issue

File:
1 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);
Note: See TracChangeset for help on using the changeset viewer.