Hi @vidyakv ,
Awesome plugin, your code is magic.
function awsm_jobs_applicant_mail_headers( $headers ) {
$headers[‘from’] = sprintf( ‘From: %1$s <%2$s>’, ‘Company Name’, ‘[email protected]’ );
$headers[‘reply_to’] = sprintf( ‘Reply-To: %1$s <%2$s>’, ‘Company Name’, ‘[email protected]’ );
return $headers;
}
add_filter( ‘awsm_jobs_applicant_notification_mail_headers’, ‘awsm_jobs_applicant_mail_headers’ );
function awsm_jobs_admin_mail_headers( $headers ) {
$headers[‘from’] = sprintf( ‘From: %1$s <%2$s>’, ‘Company Name’, ‘[email protected]’ );
return $headers;
}
add_filter( ‘awsm_jobs_admin_notification_mail_headers’, ‘awsm_jobs_admin_mail_headers’ );
The fault is in me, now everything has working succeeded fully… Yeeaaaaahh … horaiiiii… ??
Thanks for your custom function code.
Achmad S
-
This reply was modified 5 years, 7 months ago by
mrachmad.