Schedule Daily Email Notification
WordPress cron job to send e mail from the site.
// Scheduled Action Hook function send_mail( ) { return wp_mail( '[email protected]', 'Notification TEST', 'TEST', null ); } // Schedule Cron Job Event function custom_cron_job() { if ( ! wp_next_scheduled( 'send_mail' ) ) { wp_schedule_event( current_time( 'timestamp' ), 'daily', 'send_mail' ); } } add_action( 'wp', 'custom_cron_job' );