Hi Daniel,
thanks for your quick reply!
It is working fine on your frontage. I found the problem and a fix:
Your account name on mailchimp is "compojoom", no spaces. "the nlp connection" has spaces, and these are screwing up the link.
See /components/com_cmc/controllers/subscription.php:
$account = $chimp->getAccountDetails();
$memberInfo = $chimp->listMemberInfo($listId, $email);
$listInfo = $chimp->lists(array('list_id' => $listId));
$url = 'http://' . $account['username']. '.' . $dc . '.list-manage.com/profile?u='
. $account['user_id'] . '&id=' . $listId . '&e=' . $memberInfo['data'][0]['euid'];
I tried this to fix it:
// replace spaces with dashes in $url
$myusername = strtr($account['username'],' ','-');
$url = 'http://' . $myusername. '.' . $dc . '.list-manage.com/profile?u='
. $account['user_id'] . '&id=' . $listId . '&e=' . $memberInfo['data'][0]['euid'];
and it seems to work.
My second point (stylized email): The opt-in and welcome emails come from mail chimp, and they are colored, with big fonts etc.
The update-email, I found, is generated by the component, not sent via mail chimp, and therefore not stylized as the welcome email.
Can the component send the mail chimp-styled update-email instead?
Regards,
Michi