| @@ -4,9 +4,9 @@ | ||
| 4 | 4 | * @package General Emails API |
| 5 | 5 | * @category General Emails API Fields for Settings page and Functions for Sending emails. |
| 6 | 6 | * @author wpdevelop |
| 7 | 7 | * |
| 8 | - * @web-site http://oplugins.com/ | |
| 8 | + * @web-site https://oplugins.com/ | |
| 9 | 9 | * @email [email protected] |
| 10 | 10 | * @modified 2016-05-12, 2015-10-06 |
| 11 | 11 | */ |
| 12 | 12 | |
| @@ -420,9 +420,9 @@ | ||
| 420 | 420 | $recipient = $matches[2]; |
| 421 | 421 | } |
| 422 | 422 | } else { |
| 423 | 423 | // Check about correct format of email |
| 424 | - if( preg_match( '/([\w\.\-_]+)?\w+@[\w-_]+(\.\w+){1,}/im', $recipient, $matches ) ) { | |
| 424 | + if( preg_match( '/([\w\.\-_]+)?\w+@[\w\-_]+(\.\w+){1,}/im', $recipient, $matches ) ) { //FixIn: 2.0.15.1 | |
| 425 | 425 | $recipient = $matches[0]; |
| 426 | 426 | } |
| 427 | 427 | } |
| 428 | 428 | |