Viewing 5 replies - 1 through 5 (of 5 total)
  • Same for me. Doesn’t matter what I enter in the ID field.

    I’m also getting this issue.

    I’m using Mandrill to send the emails and it seems like it isn’t sending through Mandril either. If I turn off the plugin then the welcome email sends through Mandrill but doesn’t have the custom text (since the plugin is off).

    However, with the plugin activated I get the custom text but no styling is applied since it doesn’t get sent from Mandrill.

    All other emails, including the admin notification email when a new user signs up, work fine though. Is there a fix coming?

    I’m having the same problem as srkennedy… I’d imagine it can’t be too difficult to fix for someone in the know but I have no idea how to do it unfortunately.

    I’m getting the same issue. After testing in the admin console and manually adding users from the backend, the user is only getting the email if I select ” send user their password” before finishing creating the user.

    Maybe the newest versions of wordpress changed something where when a user signs up on the frontend of the site, it’s not defaulting to sending them the password.

    Line 354 on version 3.9 is what’s not letting the user email be sent! Well that and the fact that $plaintext_pass is empty but why is it empty??

    354: if (!empty($plaintext_pass))

    If you change the if statement to also allow your custom email to be sent even if $plaintext_pass is empty the user notification WILL send.

    I did it like this:

    354: if (!empty($plaintext_pass) || empty($plaintext_pass))

    This won’t be able to include the password in the email because password is empty. Can somebody figure out why it’s continually empty now?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Admin mail works, user mail doesn't’ is closed to new replies.