Пример #1
0
        /// <param name="campaign"></param>
        /// <param name="send">True to send the campaign as well. In that case <paramref name="listIds" /> is also required.</param>
        /// <param name="listIds">Lists to send to campaign to. Only required if <paramref name="send"/> is true.</param>
        public async Task <SendyResponse> CreateCampaign(Campaign campaign, bool send, List <string> listIds)
        {
            if (send && listIds == null)
            {
                throw new ArgumentNullException(nameof(listIds), "Please provide one or more list ids to send this campaign to.");
            }

            var postData = GetPostData();

            postData.Add(new KeyValuePair <string, string>("from_name", campaign.FromName));
            postData.Add(new KeyValuePair <string, string>("from_email", campaign.FromEmail));
            postData.Add(new KeyValuePair <string, string>("reply_to", campaign.ReplyTo));
            postData.Add(new KeyValuePair <string, string>("title", campaign.Title));
            postData.Add(new KeyValuePair <string, string>("subject", campaign.Subject));
            postData.Add(new KeyValuePair <string, string>("plain_text", campaign.PlainText));
            postData.Add(new KeyValuePair <string, string>("html_text", campaign.HtmlText));
            postData.Add(new KeyValuePair <string, string>("brand_id", campaign.BrandId.ToString()));
            postData.Add(new KeyValuePair <string, string>("query_string", campaign.Querystring));

            if (send)
            {
                postData.Add(new KeyValuePair <string, string>("send_campaign", "1"));
                postData.Add(new KeyValuePair <string, string>("list_ids", string.Join(",", listIds)));
            }
            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("api/campaigns/create.php", subscribeData);

            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.CreateCampaign));
        }
Пример #2
0
        public async Task <SendyResponse> ActiveSubscriberCountAsync(string listId)
        {
            var postData = GetPostData();

            postData.Add(new KeyValuePair <string, string>("list_id", listId));

            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("api/subscribers/active-subscriber-count.php", subscribeData);

            //test return value
            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.ActiveSubscriberCount));
        }
Пример #3
0
        public async Task <SendyResponse> SubscriptionStatusAsync(string emailAddress, string listId)
        {
            var postData = GetPostData();

            postData.Add(new KeyValuePair <string, string>("email", emailAddress));
            postData.Add(new KeyValuePair <string, string>("list_id", listId));

            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("api/subscribers/subscription-status.php", subscribeData);

            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.SubscriptionStatus));
        }
Пример #4
0
        public async Task <SendyResponse> UnsubscribeAsync(string emailAddress, string listId)
        {
            var postData = GetPostData();

            postData.Add(new KeyValuePair <string, string>("email", emailAddress));
            postData.Add(new KeyValuePair <string, string>("list", listId));

            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("unsubscribe", subscribeData);

            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.Unsubscribe));
        }
Пример #5
0
        /// <param name="customFields">For custom fields, use Sendy fieldname as key value.</param>
        public async Task <SendyResponse> SubscribeAsync(string listId, Subscriber subscriber, Dictionary <string, string> customFields)
        {
            var postData = GetPostData();

            postData.Add(new KeyValuePair <string, string>("list", listId));
            AppendSubscriberFields(postData, subscriber);

            AppendCustomFields(postData, customFields);
            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("subscribe", subscribeData);

            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.Subscribe));
        }
Пример #6
0
        /// <summary>
        /// Creates a new mailing list.
        /// </summary>
        /// <param name="mailingList"></param>
        /// <returns>The id of the list or the error message.</returns>
        public async Task <SendyResponse> CreateListAsync(MailingList mailingList)
        {
            var postData = GetPostData();

            postData.Add(new KeyValuePair <string, string>("list_name", mailingList.Name));
            postData.Add(new KeyValuePair <string, string>("brand_id", mailingList.BrandId.ToString()));

            if (mailingList.CustomFields.Any())
            {
                postData.Add(new KeyValuePair <string, string>("custom_fields", string.Join(",", mailingList.CustomFields.Select(c => c.Name))));
                postData.Add(new KeyValuePair <string, string>("field_types", string.Join(",", mailingList.CustomFields.Select(c => c.DataType.ToString()))));
            }
            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("api/lists/create.php", subscribeData);

            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.CreateList));
        }
Пример #7
0
        /// <param name="campaign"></param>
        /// <param name="send">True to send the campaign as well. In that case <paramref name="listIds" /> is also required.</param>
        /// <param name="groups">Lists to send to campaign to. Only required if <paramref name="send"/> is true.</param>
        public async Task <SendyResponse> CreateCampaignAsync(Campaign campaign, bool send, Groups groups = null)
        {
            if (send && groups == null)
            {
                throw new ArgumentNullException(nameof(groups), "Please provide one or more list ids to send this campaign to.");
            }

            var postData = GetPostData();

            AppendCampaignFields(postData, campaign);

            if (send)
            {
                postData.Add(new KeyValuePair <string, string>("send_campaign", "1"));
                AppendGroupsFields(postData, groups);
            }
            var subscribeData = new FormUrlEncodedContent(postData);

            var result = await _httpClient.PostAsync("api/campaigns/create.php", subscribeData);

            return(await SendyResponseHelper.HandleResponse(result, SendyResponseHelper.SendyActions.CreateCampaign));
        }