• Hello,

    we have specified custom emails and everything works well when users register directly from our website. But when there is an user created by admin from WordPress administration then there is only default WordPress notification email? We wanted to disable registrations for a month and register our users manually, but custom emails are not applied to related email notifications. Is it possible to enable it somewhere?

    Thank you very much for your help.

    http://wordpress.org/extend/plugins/theme-my-login/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    Unfortunately, I’ve not found a way to apply the custom e-mail settings to the e-mails sent when manually registering a user.

    +1 for this functionality. I have a client who mainly adds users manually and it would be great to have a nice email sent rather than the plain, uninviting WP emails.

    I wrote my own function to do this, but using your excellent plugin I would much rather let my client change the text of the email anytime.

    My messy function uses the wp_mail filter, and checks for a subject line containing “Your username and password”

    add_filter(‘wp_mail’,’handle_wp_mail’);

    if (isset ($atts [‘subject’]) && substr_count($atts [‘subject’],’Your username and password’)>0 ) {

    Messy but works to send a custom email to a manually added user.

    learningmind

    (@learningmind)

    I have the opposite problem: I would like to disable new user registration notifications and I can’t, I have already tried many things but I continue recieving the notification emails. The problem is that too many spammers register on my website every day and I get about 30-40 emails a day!!!
    Does everyone know how to stop it?
    Thanks!

    Plugin Author Jeff Farthing

    (@jfarthing84)

    I can never figure out why people insist on posting the same question over and over, in multiple places, on old threads even. I answered this here.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Theme My Login] Email notifications not working when user created by admin’ is closed to new replies.