Specifying test sample percentage

The test sample percentage specifies the percentage of subscribers from the mailing list, whom the A and B campaigns will be send to. For example, a test sample percentage of 20 specifies that the A campaign will be sent to 10% of the subscribers, B campaign will be sent to another 10% of the subscribers, and the winner campaign will be sent to the remaining 80% of the subscribers, after the testing ends.

To specify the test sample percentage, use the TestSamplePercentage property of the ABCampaign object. The following code sets the test sample percentage, while creating an AB campaign:

 

public void CreateABCampaign(Guid id)
{
    NewslettersManager manager = NewslettersManager.GetManager();
    var abCampaign = manager.GetABCampaigns().Where(c => c.Id == id).SingleOrDefault();
 
    if (abCampaign == null)
    {
        abCampaign = manager.CreateABCampaign();
 
        abCampaign.TestingSamplePercentage = 20;
 
        manager.SaveChanges();
    }
}

 

For more information, see Creating AB campaigns and Modifying AB campaigns.

Related topics:

Feedback

How useful is this article?

Tell us more

Submit
Your message was successfully sent.

We appreciate your feedback.

Your message could not be sent.

OK