• Resolved alzaran

    (@ajoyce2016)


    Is it possible to change the destination email address? Our job manager employee is not an admin.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Right now it is just available by adding a snippet to your theme’s functions.php file or using a Snippet plugin:

    
    // Admin Updated Job Notification
    add_filter( 'job_manager_email_admin_updated_job_to', function( $email ) {
    	return '[email protected]';
    } );
    
    // Admin New Job Notification
    add_filter( 'job_manager_email_admin_new_job_to', function( $email ) {
    	return '[email protected]';
    } );
    
    // Admin Expiring Job Notification
    add_filter( 'job_manager_email_admin_expiring_job_to', function( $email ) {
    	return '[email protected]';
    } );
    
    Thread Starter alzaran

    (@ajoyce2016)

    Thanks! This is perfect. I checked the documentation, but couldn’t find this. Is there a master list of filters available somewhere?

    No, all filter documentation is currently just inline. We hope to have more filter docs up soon.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change email notification address?’ is closed to new replies.