Renewal Reminders – EOT Dates
-
Hi there,
I have set s2member up to send EOT dates to Mailchimp and then have configured Mailchimp to send renewal reminders based around that EOT date. Anytime a user repurchases a buy now it also correctly updates this EOT date.
We are looking now though at addind recurring subscriptions and I’m wondering if anyone knows if these updated EOT dates are still going to be send to Mailchimp or if there is a way for them not to be. If they are, the people on the subscription plan would be getting our same renewal reminder emails every month and ain’t nobody got time for that.
Thoughts?
This is the code I am using in the s2hacks folder to force the EOT to Mail Chimp
<?php add_filter('ws_plugin__s2member_mailchimp_merge_array', 'my_filter', 10, 2); function my_filter($merge, $vars) { // $merge: Array of existing MERGE fields that s2Member passes by default. // $vars: Array of defined variables in the scope/context of this Filter. $custom_merge = array( 'eot_date' => date('m/d/Y',get_user_option('s2member_auto_eot_time', $vars['user_id'])) ); return array_merge($merge, $custom_merge); }
The topic ‘Renewal Reminders – EOT Dates’ is closed to new replies.