• Resolved JessBacker

    (@jessbacker)


    Is there a way to change the From: email address on the job forms? Currently it comes from the user that has filled out the form. We would like to use a no-reply@ address so the mail server doesn’t reject the forms.

Viewing 1 replies (of 1 total)
  • Plugin Author BlueGlass

    (@blueglassinteractive)

    Hi @graphicbob

    You can try 2 hooks plugin has, use like this in your theme’s function.php:

    add_filter('job-postings/from_email', function($contact_email, $job_id){
    // $contact_email = 'no-reply@yourdomain.com';
    return: $contact_email;
    }, 10, 2);
    
    add_filter('job-postings/from_name', function($name, $job_id){
    // $name = 'No Reply';
    return: $name;
    }, 10, 2);

    Please also update the plugin, as we added support to WP 5.5

    Br,

Viewing 1 replies (of 1 total)

The topic ‘From Email Address’ is closed to new replies.