Hi!
I have the multiple lists form running. I got the code off of another forum post.
It appears that the signup process is fine (I turned on "overwrite duplicates" to get it to work).
the problem is, when someone tries to unsubscribe and they check more than one box, it always says:
There were errors removing you from our mailing list(s):
User not found in database. You should not receive any more email.This isn't good, because it clearly says "you shouldn't receive anymore", but then the next mailing goes out and they get one!
I can't send any more mailings until this is fixed in my form
Is there anyway you can look at it and see what is messed up?
The code is:
<form method=post action=http://www.upsa-intl.org/email/signup.php>
<p>
<input type=hidden name=overwrite_dupes value=1>
<input type=checkbox name=lists[] value=2><strong>Dynamic Transactions</strong> (from UPSA HQ) <br><br>
<input type=checkbox name=lists[] value=19> UPSA-Atlanta (Atlanta, GA) Updates <br> <br>
<input type=checkbox name=lists[] value=7>UPSA-Boston (Boston, MA) Updates <br><br>
<input type=checkbox name=lists[] value=4> UPSA-DC (Washington, DC) Updates<br> <br>
<input type=checkbox name=lists[] value=5>UPSA-RTP (Raleigh, NC) Updates<br><br>
<input type=checkbox name=lists[] value=16> UPSA-Seattle (Seattle, WA) Updates<br><br>
<input type=checkbox name=lists[] value=6>UPSA-BENELUX (Belgium, Netherlands, Luxembourg) Updates<br><br>
<input type=checkbox name=lists[] value=3>UPSA-SA (Southern Africa) Updates<br><br>
<input type=checkbox name=lists[] value=8>Sales Competency Council Updates<br> <br>
<input type=checkbox name=lists[] value=9> Selling Cycle Management Council Updates<br> <br>
<strong>First Name:</strong><br>
<input type=text name=fname size=20><br>
Last Name:<br>
<input type=text name=lname size=20><br>
<strong>Email:</strong><br>
<input name=email type=text size="30">
<br>
<br>
<select name=submode>
<option value=sub>Subscribe</option>
<option value=unsub>Unsubscribe (Remove)</option>
</select><br>
<br>
<input type=submit name=sup value="Subscribe/Unsubscribe!">
</p>
</form>