PriMoThemes — now s2Member® (official notice)
This is now a very OLD forum system. It's in READ-ONLY mode.
All community interaction now occurs at WP Sharks™. See: new forums @ WP Sharks™
Abercorn wrote:Jason, Christián,
I have the type of setup that dancarp describes above. Subscriber checks box agreeing to receiving emails from us and also agreeing to the Terms & Conditions. Subsequently, the plugin sends an email out to them with a link to our website's login form and a system-generated password. I checked today with MailChimp's customer support, and they agree that such procedure as I have described is considered a "double-opt-in" process. They said that as long as that double-opt-in process is implemented on our website, they don't have a problem with their confirmation emails being disabled. They directed me to the following page which indicates that a list is OK to be imported into MailChimp if the subscribers have opted in to the list "on your own website":
http://kb.mailchimp.com/article/can-i-u ... -mailchimp
Anyways, just a little background as some people appear to be under the impression that disabling the Mailchimp confirmation email would be frowned-upon by MailChimp.
Having said all of that, I have a question for you. If the hack is implemented and the mailchimp confirmation email is disabled, will Mailchimp continue to receive the original ip address of the subscriber as collected by the S2Member plugin? Or will they end up collecting the IP address (and for that matter date and time) of my host (as S2Member exports the data via the API through the host)?
In other words, is MailChimp gathering the IP address directly from the subscriber through their confirmation email ? Or is that a field that the plugin sends to MailChimp?
Please advise as this issue would impact how MailChimp would handle potential SPAM complaints.
In other words, is MailChimp gathering the IP address directly from the subscriber through their confirmation email ? Or is that a field that the plugin sends to MailChimp?
Is there a way to keep the confirm email disabled (as it is) and some how enable just the final (welcome) email... or is it an "all or nothing" hack?
If you want to send an email immediately when someone signs up, customize your "Final Welcome Email" template - no autoresponder needed. Use autoresponders if you want to send 1 day or longer after signup.
Jason Caldwell wrote:Thanks for the follow-up.
Your list of Users/Members is not 100% synchronized with your MailChimp List(s), nor should it be. An account on your site provides access to your content, while a subscriber on your mailing list just receives email communication from you. Does that help to clarify?
If the mailchimp confirmation email is eliminated (via the filter provided by S2Member), then all of the S2Member subscribers (who clicked on the S2Member confirmation email) will be silently subscribed to Mailchimp, correct?
Could you please help me understand the degree of synchonization that takes place after signup?
Cristián Lávaque wrote:Well, you could have the first email in your autoresponder sequence be a welcome email. Would that work?
add_filter("ws_plugin__s2member_mailchimp_merge_array", "my_filter");
function my_filter($merge)
{
$my_custom_elements = array('MERGE3'=>date("m/d/Y"));
return array_merge($merge, $my_custom_elements);
}
GregKeen wrote:Thanks, Cristián, it really helped! I've added the lines below to the s2-hacks.php file and now I have the registration date submitted to MailChimp just fine:
- Code: Select all
add_filter("ws_plugin__s2member_mailchimp_merge_array", "my_filter");
function my_filter($merge)
{
$my_custom_elements = array('MERGE3'=>date("m/d/Y"));
return array_merge($merge, $my_custom_elements);
}
MarkMBravura wrote:Thanks Jason, your clarification is much appreciated!
Users browsing this forum: No registered users and 1 guest