Mailchimp
Send iOS and Android subscription events to Mailchimp to trigger personalized emails
Qonversion sends mobile subscription events to Mailchimp to automate emails with special offers to users who cancel a trial or a subscription. A personalized email with a special offer to a user who just canceled his trial can significantly uplift your app's revenue. You need to provide a user email address using Qonversion's user properties to be able to use Mailchimp integration.
1. Configure the SDK
-
Set Qonversion SDKs following installing the SDKs guides.
-
Provide user email using User Properties:
Qonversion.shared().setUserProperty(.email, value: "[email protected]")
[[Qonversion sharedInstance] setUserProperty: QONUserPropertyKeyEmail, value: @"[email protected]"];
Qonversion.getSharedInstance().setUserProperty(QUserPropertyKey.Email, "[email protected]");
Qonversion.shared.setUserProperty(QUserPropertyKey.Email, "[email protected]")
Qonversion.getSharedInstance().setUserProperty(QUserPropertyKey.email, '[email protected]');
Qonversion.getSharedInstance().setUserProperty(UserPropertyKey.EMAIL, '[email protected]');
Qonversion.GetSharedInstance().SetUserProperty(UserPropertyKey.Email, "[email protected]");
Qonversion.getSharedInstance().setUserProperty(Qonversion.UserPropertyKey.EMAIL, '[email protected]');
Qonversion.getSharedInstance().setUserProperty(UserPropertyKey.EMAIL, '[email protected]');
→ Read more about User Properties here
Attention
You need to provide user email using user properties to Qonversion. Qonversion will be able to send events to Mailchimp only for the users with the correct user email provided. Please check how to add user email to Qonversion here
Qonversion is sending the code of the registered event {"name": "trial_started"} to https://mailchimp.com/developer/marketing/api/list-member-events/add-event/ endpoint. User ID of the MailChimp user (subscriber_hash) is generated based on the user's email.
2. Configure the Mailchimp Integration
-
Get your Mailchimp API KEY and Audience ID
-
Navigate to the Integrations section in your Qonversion project, select Mailchimp , and provide the API Key and Audience ID (AKA List ID) , and Save.
Done
Now Qonversion will start sending in-app purchases and subscriptions data to your Mailchimp account.
Updated about 1 month ago