Click or drag to resize
IIssueStatisticsCalculator Interface
Defines properties containing statistics data calculated for IssueInfo.

Namespace: CMS.Newsletters.Internal
Assembly: CMS.Newsletters (in CMS.Newsletters.dll) Version: 13.0.131
Syntax
C#
public interface IIssueStatisticsCalculator

The IIssueStatisticsCalculator type exposes the following members.

Properties
  NameDescription
Public propertyBounceRatio
Ratio of emails bounced back to emails being sent.
Public propertyDeliveredEmails
Number of delivered emails.
Public propertyDeliveryRatio
Ratio of DeliveredEmails to sent emails.
Public propertyOpenedEmails
Number of opened emails.
Public propertyOpenRatio
Public propertyTotalClicks
Number of clicks on email links, including multiple clicks on same link in same email.
Public propertyUniqueClickRatio
Ratio of unique clicks on email links (UniqueClicks) to DeliveredEmails.
Public propertyUniqueClicks
Number of clicks on email links. Multiple clicks on same link in same email are counted as a single click.
Public propertyUnsubscriptionRatio
Ratio of unsubscriptions count to DeliveredEmails.
Top
Remarks
Statistics are cached after calculation and parts of calculation uses these cached values. In order to get most up-to-date results, calculate all required statistics without unnecessary delays between them.
See Also