Start A/B test campaign
To start an AB campaign, you must use the NewslattersManager class. It exposes the StartTesting method. When the testing period ends, the winning campaign is sent to the subscribers in the mailing list that did not take part in the testing phase. For more information on this, see For developers: Specify test sample percentage.
The following code starts an AB campaign through the Native API. ```C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Telerik.Sitefinity.Modules.Newsletters;
namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.EmailCampaigns.ABCampaigns { public partial class EmailCampaignsSnippets { public void StartABCampaign(Guid abCampaignId) { NewslettersManager manager = NewslettersManager.GetManager(); manager.StartTesting(abCampaignId); } } }
First, you initialize the NewslettersManager. Then, you call the StartTesting method to initiate the AB campaign.