• Resolved positivejam

    (@positivejam)


    Do you have a mirror of this plugin’s repository on Github (or another git-based code repository)? I was going to create one because I couldn’t find it via Google, but thought I would first ask if you had already made one. There are some contributions I’m interested in making, but I’d prefer to work in git, not svn.

    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Dornaweb

    (@dornaweb)

    Hi
    Sorry if i answered too late.
    yes i do have one:
    https://github.com/dornaweb/wp-email-verification/

    • This reply was modified 7 years, 6 months ago by Dornaweb.
    • This reply was modified 7 years, 6 months ago by Dornaweb.
    Thread Starter positivejam

    (@positivejam)

    Thank you!

    Hi
    Thanks for this plugin.

    It’s will be better to make some modification on verification mail.
    User get email send by WordPress like “WordPress <wordpress@domain.com> ”

    Is there any way to change WordPress Word on Email

    Plugin Author Dornaweb

    (@dornaweb)

    Hi @arifbd26, You can try this:

    /**
     * Change sender email address and name
     */
    add_filter( 'wp_mail_from', function(){
        return 'no-reply@example.com';
    });
    
    add_filter( 'wp_mail_from_name', function(){
        return 'Example sender name';
    });
    • This reply was modified 7 years, 3 months ago by Dornaweb.

    Where I can put this code:

    /**
    * Change sender email address and name
    */
    add_filter( ‘wp_mail_from’, function(){
    return ‘no-reply@example.com’;
    });

    add_filter( ‘wp_mail_from_name’, function(){
    return ‘Example sender name’;
    });

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Github Mirror’ is closed to new replies.