| ISubscriptionServiceGetAllActiveSubscriptions Method | 
            Method returns all subscriptions for given contact. Contact can be subscribed directly or using contact group.
            Only active subscriptions are retrieved (not approved one are omitted, unsubscriptions are reflected).
            Does not filter out subscriptions blocked using bounces.
            
 
Namespace: CMS.NewslettersAssembly: CMS.Newsletters (in CMS.Newsletters.dll) Version: 11.0.0
 Syntax
Syntax Examples
Examples
            Example shows how to get all newsletters the current contact is subscribed to
            
var newsletterIds = Service<ISubscriptionService>.Entry().GetAllActiveSubscriptions(currentContact);
                                                         .Column("NewsletterID")
                                                         .Distinct() See Also
See Also