Hi,
I've seen similar problems to this posted here but nothing exactly the same so apologies if this question is repeated elswehere...
I've got PHP/HTML page which shows a table of users and their e-mail addresses, retrieved from a MySQL DB. Part of the code builds the e-mail addresses returned from a query into a mailto link, in the BCC field. The user would click the link and an Outlook new message appears with the addresses in the BCC field and the subject set. Pretty simple.
This has been working fine but as the Database has got bigger I've noticed that when the results >40 recipients, I click on the link but nothing happens. No matter how big the BCC field is, if I hover over the link it shows the addresses as it should but doesnt work when there's >40ish addresses.
This is in the WHILE loop that renders the HTML Table and results:
$recps .= $row["sm_contact1mail"]. "; ";
And this is the code for the link to be clicked on:
echo " <a href='mailto:$sm_user@domain.com?bcc=$recps'>Click Here To Mail These Contacts></a>";
This does work for addresses up to around 30, and definitely doesnt work over 70. Has anyone seen this before and know what I'm doing wrong?
Thanks.
- Mart