mailchimp

Is it possible to use google webfonts in a MailChimp template?

五迷三道 提交于 2021-02-18 10:14:42
问题 I've been trying to incorporate google webfonts in MailChimp and can't get any solutions to work. I've tried the approach listed on Campaign Monitor's site using @import: http://www.campaignmonitor.com/blog/post/3897/using-web-fonts-in-email but I get this error when trying to preview: An error occurred parsing your template CSS: Cannot find a CSS file at: http://fonts.googleapis.com/css?family=Montserrat Has anyone been able to use custom fonts within MailChimp? 回答1: It turns out it's not

Is it possible to use google webfonts in a MailChimp template?

放肆的年华 提交于 2021-02-18 10:14:11
问题 I've been trying to incorporate google webfonts in MailChimp and can't get any solutions to work. I've tried the approach listed on Campaign Monitor's site using @import: http://www.campaignmonitor.com/blog/post/3897/using-web-fonts-in-email but I get this error when trying to preview: An error occurred parsing your template CSS: Cannot find a CSS file at: http://fonts.googleapis.com/css?family=Montserrat Has anyone been able to use custom fonts within MailChimp? 回答1: It turns out it's not

Where is the MailChimp Connector for PowerShell?

╄→尐↘猪︶ㄣ 提交于 2021-02-11 14:23:39
问题 How and where "is" the connector: MailChimp MailChimp is a SaaS service that allows businesses to manage and automate email marketing activities, including sending marketing emails, automated messages and targeted campaigns. This connector is available in the following products and regions: https://docs.microsoft.com/en-us/connectors/mailchimp/ reading in env variables as: nicholas@mordor:~/chimp$ nicholas@mordor:~/chimp$ pwsh chimp.ps1 Name Value ---- ----- chimp_key c.................7 foo

Updated how can i edit my script to import additionnal fields to mailchimp

时光怂恿深爱的人放手 提交于 2021-01-29 12:41:24
问题 hi and sorry for my errors now i have problem with fields, actually instead of having : firstname, lastname, email fields, business asking me to have 2 additionnal fields, job and country and i've updated my script with this : $person = @{ email_address=$email status ="subscribed" merge_fields = @{ FNAME=$firstname LNAME=$lastname title=$title Country=$country $dayAgo = (Get-Date).AddDays(-5).Date $users = Get-ADUser -Filter {whenCreated -ge $dayAgo} -Properties whenCreated, StartDate,

Missing API key when making API RestMethod Call After HTTP Basic authentication in Mailchimp

一曲冷凌霜 提交于 2021-01-28 20:43:52
问题 In PowerShell, I was able to log in using HTTP Basic authentication For Mail Chimp. $acctname = 'thisismyusername' $password = 'thisismyapikey' $params = @{ Uri = 'https://us14.api.mailchimp.com/3.0/'; Method = 'Get'; #(or POST, or whatever) Headers = @{Authorization = 'Basic ' + [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes("$($acctname):$($password)"));} #end headers hash table } #end $params hash table $var = Invoke-RestMethod @params $var When I try to get basic info on list

LockService: How do I lock a Google sheet from within a script?

孤者浪人 提交于 2021-01-28 18:42:51
问题 I'm using a Google spreadsheet to store contact info I collect from a website (GDPR compliant, don't worry) and I synchronize this sheet with Mailchimp using a custom App script, which runs in the background. More in detail, I'm using a temporary sheet as a buffer which is filled with the data users send via the site's forms (I'm using Contact Form 7 Google Sheets Connector). My script runs each time the event INSERT_ROW is triggered in the "buffer" sheet. It analyzes the data, stores them in

Mailchimp and Gmail: text color issue

淺唱寂寞╮ 提交于 2021-01-28 08:16:31
问题 i've a problem with Mailchimp, but only on Gmail. When i send test email text looks "purple" and not "white" as i wrote into code ( #FFFFFF ). I write it into the style="..." and into "style" section mcnTextContent { color: #FFFFFF !important; } 回答1: As mentioned here, Gmail doesn't support the <style> tag, therefore, you would have to code your color inline like this for example... <span style="color:#ffffff;">TEXT HERE</span> However, as part of your email build, I'd recommend you use an

How to read json payload of a large response?

╄→尐↘猪︶ㄣ 提交于 2021-01-28 07:44:51
问题 I am developing some code that will read a large json payload returned by the Export API of Mailchimp. var response = caller.PostAsync(endpoint, data).Result; var exportedData = response.Content.ReadAsStringAsync().Result; I am currently using the Visual Studio 2017 debugger to try and view the response but I keep getting an error that says: Cannot obtain value of the local variable or argument because there is not enough memory available. I ultimately want to extract information from each

What is the purpose of each parameter in a MailChimp unsubscribe URL?

南笙酒味 提交于 2021-01-27 10:38:32
问题 In the following URL, that unsubscribes a user from a list: http://xxxxx.us2.list-manage.com/unsubscribe? u=87f537bccxx35e53a1890e0d9& id=40dcxx6cd6& e=c4aaxx1dd6& c=9a6xx11963 What does each parameter do? 回答1: Today I had to learn what each nondescript parameter means so that I could generate URLs for each email I send through Mandrill. It wasn't that easy to discover their meaning, but here are the one's I've come up with and how I found out what they are. http://xxxxx.us2.list-manage.com

What is the purpose of each parameter in a MailChimp unsubscribe URL?

爷,独闯天下 提交于 2021-01-27 10:38:08
问题 In the following URL, that unsubscribes a user from a list: http://xxxxx.us2.list-manage.com/unsubscribe? u=87f537bccxx35e53a1890e0d9& id=40dcxx6cd6& e=c4aaxx1dd6& c=9a6xx11963 What does each parameter do? 回答1: Today I had to learn what each nondescript parameter means so that I could generate URLs for each email I send through Mandrill. It wasn't that easy to discover their meaning, but here are the one's I've come up with and how I found out what they are. http://xxxxx.us2.list-manage.com