Changeset 3379487 for simple-smtp-by-maileroo/trunk/maileroo.php
- Timestamp:
- 10/16/2025 01:17:37 PM (6 weeks ago)
- File:
-
- 1 edited
-
simple-smtp-by-maileroo/trunk/maileroo.php (modified) (3 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);
Note: See TracChangeset
for help on using the changeset viewer.