在laravel 5.7应用程序中,我使用https://github.com/spatie/laravel-newsletter订阅/取消订阅mailchimp列表 可以,当所有用户都被订阅到当前的mailchimp列表时,该列表将起作用。
MAILCHIMP_APIKEY = NNNNNNNNNN
MAILCHIMP_LIST_ID = NNNNNNNNNN # ID of 'subscribers' mailchimp list
但是由于我的网站有多个群组新闻,因此我尝试使用以下代码订阅mailchimp列表:
$retData= Newsletter::subscribe($userProfile->email, ['FNAME'=>$userProfile->first_name, 'LNAME'=>$userProfile->last_name], 'subscribers'); // 3rd parameter can be different
其中第三个参数是mailchimp列表名称,正如我在服务器上看到的那样:https://prnt.sc/mqbgnb 但是我得到了错误:
There is no list named `subscribers`.
为什么出错?此mailchimp列表配置错误?它有一些选项,我不确定其中一些是否与我的问题有关?
在文档中,我读为:
//Subscribe someone to a specific list by using the third argument:
Newsletter::subscribe('nanny.ogg@discworld.com', ['firstName'=>'Nanny', 'lastName'=>'Ogg'], 'Name of your list');
如何解决我的错误?
谢谢!