Need Help on a mail script
I'm in the process of writing a scipt for a customer of mine.His request was so that he can use a web based form to send out an e-mail to the customer database...
Easy straighforward I assumed... Simple php mail() interface w/ and pull the email's from the MySQL list...
Well my problem is that the HTML form where he would type in the email won't accept the usual size letters he wants to send out...
I'm not even entering in the mail() portion of the script...
It's just a simple form storing the data into <input type="hidden"> areas... Is this the problem... Can the http protocol only handle so much data?...
Would I have to either write to a static file or store the content of the email into the database in between pages (i.e. choosing which list the mail goes to?)....
After the email is entered into the <textarea> the submit button refuses to function... It will function when there is less content in the area which leads me to assume it's just a default proection against buffer overruns?...
Am I right...? Is the MySQL or static flat file the approiate work around?

