Viewing 11 replies - 1 through 11 (of 11 total)
  • Same here….

    Any fix yet?

    Thread Starter cuongvv

    (@cuongvv)

    I have not found a problem?

    I am having the same issue.

    Test works perfectly, reset password fails.

    Same here as well. Deactivated the plugin.

    I’m on 4.3 and all works fine !
    I’m using the standard plugin however I had to add the following filters to make sure the ‘FROM’ was correctly set for another issue. I have added these lines into my own plugin.
    Have a try and let me know if it helped for you.
    Pascal.

    /**
    * Since the install of WP-Mail-SMTP we need to make sure the FROM is the same as the one specified in the plugin
    * These filters will overwrite any FROM send by other plugins.
    */
    add_filter('wp_mail_from','custom_wp_mail_from');
    function custom_wp_mail_from($email) {
    	return get_option('mail_from');
    }
    add_filter('wp_mail_from_name','custom_wp_mail_from_name');
    function custom_wp_mail_from_name($name) {
    	return get_option('mail_from_name');
    }

    For me it’s failing on the default password rest. not a custom plug in or anything fancy :/

    On the password reset ? What steps you do exactly ?

    Yes, standard password reset.

    Mail server settings work when I hit the test button, but if I log out and request a password reset it fails.

    Can’t edit my previous post, but I have to correct that I too had issues under 4.3, so had to switch to a different tool.
    It’s a pity as I really like the tiny WP mail smtp !

    Thread Starter cuongvv

    (@cuongvv)

    no way to solve this problem? hepl me

    I tested the password reset with WP-Mail-SMTP 0.9.5 and WordPress 4.3 and it works. I also receive other emails like comment notifications.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘wp-mail-smtp does not work on wordpress 4.3’ is closed to new replies.