Just checked – wp_mail() function works just fine on our websites.
-
This reply was modified 1 month, 3 weeks ago by
Groovyx9.
After checking former version, 4.0.4 can send email, 4.1.0 & 4.1.1 cannot. Any chance to get some help? Thanks in advance.
Should be fixed with 4.2.0.
it’s not : Test email has failed. Please, check your email settings.
If you are sending with some external SMTP, maybe you need this:
“From:” mail (since: 3.2.2)
If, for some reason, you need the emails sent by the plugin to have a From different from the site administrator, you can change it from the wp-config.php by adding a constant:
define( 'WPVULNERABILITY_MAIL', 'sender@example.com' );
If the constant is active, it will be visible in the configuration screen.
So you have any log from the SMTP telling you why is failing?
The plugin uses the wp_mail() function, so it should work with the default WordPress configuration.
Confirmed on other websites. As I explained in my second message : “Just checked – wp_mail() function works just fine on our websites.” (I do not use smtp plugin). It worked with your plugins prior 4.1.0.
hmmmm it works on another server! What does require your plugin to send an email?
Some time ago we added this:
define( 'WPVULNERABILITY_MAIL', 'sender@example.com' );
Because some people using things like Amazon SES or other “external SMTP” required one specific email as “FROM”. If not the plugin uses the admin email (and sometimes is not always the same as the sender).
I vibed a small plugin but it did not catch anything. I tried with WP Mail Catcher (nice plugin) but it did not catch any email when I test-sent from your plugin. It seems that your plugin is looking for something that it does not find and so the email are never created or sent. Sending wp email with any plugins including WP Mail Catcher test function work just fine. Your older plugin version worked just fine. It seems that your newer versions are requesting something before sending and that one of my servers cannot provide this something and I have no idea what it is.
-
This reply was modified 1 month, 1 week ago by
Groovyx9.
-
This reply was modified 1 month, 1 week ago by
Groovyx9.