Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Activate Email Cron

// Scheduled Action Hook
function import_prayer_email(  ) {
}

// Schedule Cron Job Event
function activate() {
	if ( ! wp_next_scheduled( 'import_prayer_email' ) ) {
		wp_schedule_event( time(), 'hourly', 'import_prayer_email' );
	}
}
add_action( 'wp', 'activate' );