• Resolved root09

    (@root09)


    Hi …
    if you have a problem with “WordPress in the reply’s sender”

    make a mu-plugin:

    
    <?php
    /*
    MU Plugin: Function to change sender email address
    Description: Enlever le nom wordpress et a la place celui du site
    faire le changement ci dessous
    Version1: 08 09 2015
    */
    // Function to change email address
     
    function wpb_sender_email( $original_email_address ) {
        return 'YOUR EMAIL';
    }
     
    // Function to change sender name
    function wpb_sender_name( $original_email_from ) {
        return 'YOUR NAME';
    }
     
    // Hooking up our functions to WordPress filters 
    add_filter( 'wp_mail_from', 'wpb_sender_email' );
    add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
    ?>
    

    thats all…

Viewing 1 replies (of 1 total)
  • Thank you for sharing this, @root09!

    We’re actually investigating various email-related subjects, including “From” names, and the approach you shared is one of the possible fixes we might include in the next release.

    Out of curiosity, did this make the difference for you? Said otherwise: if you disable the above snippet, your emails ignore your HappyForms Email display name option?

    Thanks again!

Viewing 1 replies (of 1 total)
  • The topic ‘WordPress in the reply’s sender’ is closed to new replies.