Britt Malka
Member
Thanks to the script you gave me, I can now add new subscribers and update existing subscribers to a list.
I use the following form code to add them one list and to add a custom field:
I need to add them to more than one list. Sometimes two or three. I've tried making a copy of the "list" input and used the value for the second list, and I've tried adding the second list to the existing input field, separated by a comma. But neither worked.
Can it be done? Or should I set up a weekly export/import routine?
I use the following form code to add them one list and to add a custom field:
Code:
<form accept-charset="utf-8" action="http://DOMAIN.com/custom/list-subscribe/" method="post" target="_blank">
<input name="list" type="hidden" value="ta5238pvhl913" />
<input name="FNAME" type="text" value="" placeholder="First name" />
<input name="LNAME" type="text" value="" placeholder="Last name" />
<input name="EMAIL" required="" type="text" value="" placeholder="email" />
<input name="CODE" type="HIDDEN" value="CODE" />
<button type="submit">Sign up here</button></form>
I need to add them to more than one list. Sometimes two or three. I've tried making a copy of the "list" input and used the value for the second list, and I've tried adding the second list to the existing input field, separated by a comma. But neither worked.
Can it be done? Or should I set up a weekly export/import routine?