Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Configure.cshtml

@model ConfigurationModel

@{
    Layout = "_ConfigurePlugin";
}

To enable this plugin, you'll need to:

1. Please sign up on omnisend.com
2. Follow steps provided here - instructions.
3. Fill in your account details below

@*//recommended to not change this setting*@ @*
*@
@*//order history not supported at this moment*@ @**@

For full integration with the service, you need to perform data synchronization. For your convenience, synchronization is divided into three blocks:

  • @T("Plugins.Misc.Omnisend.SyncContacts") - Performs synchronization of customers who have subscribed to the Newsletter
  • @T("Plugins.Misc.Omnisend.SyncProducts") - Performs category and product synchronization
  • @*//order history not supported at this moment*@ @*
  • @T("Plugins.Misc.Omnisend.SyncOrders") - Performs synchronization of existing orders and current user carts
  • *@
@if (Model.Batches.Any()) {

@T("Plugins.Misc.Omnisend.BatchesInProcess")

@foreach (var batch in Model.Batches) { }
@T("Plugins.Misc.Omnisend.BatchesInProcess.SyncType") @T("Plugins.Misc.Omnisend.BatchesInProcess.StartedAt") @T("Plugins.Misc.Omnisend.BatchesInProcess.Status") @T("Plugins.Misc.Omnisend.BatchesInProcess.TotalCount") @T("Plugins.Misc.Omnisend.BatchesInProcess.FinishedCount") @T("Plugins.Misc.Omnisend.BatchesInProcess.ErrorsCount") @T("Plugins.Misc.Omnisend.BatchesInProcess.EndedAt")
@T(batch.SyncType) @batch.StartedAt @batch.Status @batch.TotalCount @batch.FinishedCount @batch.ErrorsCount @batch.EndedAt
}

Note: Manual synchronization should be performed only once, with multiple synchronization, batch insert will report data insert errors. Further synchronization will go automatically and will not require the participation of an administrator