• Resolved Shuvashish

    (@shuvashish)


    Hi
    I want to ask how can I change the default email sender name, that WP Job Manager uses to send notifications when somebody has signed-up as a candidate or employer?
    By-default email sender is “WordPress <[email protected]>”.
    https://prntscr.com/mzvw03

    Second thing when user create password by user themselves, a link has been sent to their email. Which is used to create password for user.
    But the link is sending user directly to Word Press back end, which we don’t want to show or send there.
    https://prntscr.com/mzvxks

    So, how can I am able to send user to the front end form to create their password like Forgot Password?
    https://prntscr.com/mzvye5

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    It is not support of WPJM, but I will help you:

    1.

    //Set name sender in emails
    
    // Function to change email address
     
    function wpb_sender_email( $original_email_address ) {
        return '[email protected]';
    }
     
    // Function to change sender name
    function wpb_sender_name( $original_email_from ) {
        return __('JobsFrontier - find your job');
    }

    2. I do not thinkis it good idea. Just leave it. It does not makes problem on your site.

    3. I do not know what do you mean.

    Thread Starter Shuvashish

    (@shuvashish)

    Hi @kibus90
    I don’t understand what you are trying to solve. But anyway, my issues have been resolved with our your custom code.
    Thanks
    Shuvashish

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Default email sender name’ is closed to new replies.