Skip to content

Commit

Permalink
FIX: Set job expiry reply to callback
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinjohn22 committed Mar 20, 2024
1 parent 36479a5 commit d017c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-job-openings.php
Original file line number Diff line number Diff line change
Expand Up @@ -1873,7 +1873,7 @@ public function expiry_notification_handler( $new_status, $old_status, $post ) {
$default_from_email = AWSM_Job_Openings_Settings::awsm_from_email();
$from_email = get_option( 'awsm_jobs_author_from_email_notification', $default_from_email );
$to = get_option( 'awsm_jobs_author_to_notification' );
$reply_to = get_option( 'awsm_jobs_author_reply_to_notification' );
$reply_to = get_option( 'awsm_jobs_author_reply_to_notification', get_option( 'awsm_jobs_reply_to_notification') );
$cc = get_option( 'awsm_jobs_author_hr_notification' );
$subject = get_option( 'awsm_jobs_author_notification_subject', $expiry_default_options['subject'] );
$content = get_option( 'awsm_jobs_author_notification_content', $expiry_default_options['content'] );
Expand Down

0 comments on commit d017c4c

Please sign in to comment.