Superiors are requesting the weekly digest subscribers we have be sent the email every Friday at 8AM EST.
I was looking around the plugin files and found this area within sp-subscriptions-plugin.php:
$subs = sp_get_option(‘subscriptions’);
$interval = ($subs[‘digesttype’] == 1) ? (60*60*24) : (60*60*24*7);
$schedules[‘sp_subs_digest_interval’] = array(‘interval’ => $interval, ‘display’ => __(‘SP Subscription Digest Interval’));
return $schedules;
}
I’m stabbing in the dark here, but it seems like the messages are sent 24hrs (for daily) or 168hrs (for weekly) from the time someone subscribes.
Would this (line 657) be the appropriate place to define the release for Fridays @ 0800?
I suppose another, more laborious solution, would be to manually re-subscribe our users (well over 100) as quickly as possible next Friday morning.