Ok I think I haven't been clear about what I need because I think you are talking about something that I'm not... That or I just don't understand what you are saying ( which is very possible lol).
Let me try to explain in more detail... ( sorry to post these URL's, but it might help if you see what I am talking about ).
I have about 10 members that I am letting use a copy of my site to promote their own biz... here is a sample of mine:
http://www.fastestcashevermembers.com/movie.php?ref_id=12345And one that I made for a member:
http://www.fastestcashevermembers.com/movie.php?ref_id=45404Ok, you'll see at the end of the page it has MY or THEIR contact info. Right now what I am doing is simply creating files in "/public_html/users" that are called, "12345.php" and "45404.php" respectively which correspond to the member ID in the URL. Then I simply call this code to include that users info on the page so members know who to contact:
include 'users/' . $_GET['ref_id'] . '.php';
This works great for the most part... now what I do is on the main page of the site, there is an opt-in form and it stores the ID# in a custom ListMail field, so on my followups I send them to the right members page, this way the follow ups work for any amount of people.
Now all I need to do is: When a potential lead fills out the opt-in form Listmail sends me the "List 24: New Signup! - test@test.com" email which is great. But I also want this same exact email to goto the member whos ID# generated this signup. So if that member is ID#45404 then the signup extra can open the "public_html/users/45404.php" file and extract the members email address in it and send the same notification email to them.
Now, I'm not opposed to putting the members in a separate Listmail List if that makes it easier. The only problem with this is that I have one user that wants me to add her google conversion code in and by using the "45404.php" file included on the site I can easily do this just by adding her code to that file. If they are in a Listmail List this might be more difficult? ( Unless I can store it in a custom field, but it's a lot of data ).
I don't need the member themselves to be able to change their info, etc. They can just email me to do that ( now in the future if I do get more members it may be nice if they could ).
Let me know what you think, hope I made this more clear.