• Resolved alimirza13

    (@alimirza13)


    I am looking for custom email address to send job manager emails which means instead of using default functionality which send emails to site admin email address I want to get email notification to some different email. Is it possible with some actions of filters?.

Viewing 2 replies - 1 through 2 (of 2 total)
  • @alimirza13

    just add this to your childthemes functions.php

    // 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 alimirza13

    (@alimirza13)

    @braehler Thanks for the solution I already search the code on my own and got the same solution. Thanks anyway it will help others as well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom Email Address for email notification’ is closed to new replies.