Would anyone be so kind as to help with a problem. I have put together an invoice form that when updated makes a decent looking invoice that can be printed. What would be ideal would be to have an"email page" script that will then convert the html page to an email and sent to address specified in an input box with subject also specified. Is this possible? Thanks for your time.
The HTML form should submit everything to the PHP script (through action="yourScript.php") and then the PHP script will read the fields and you can use mail() to e-mail it to yourself.
Thanks for your answer.... trouble is not sure how to implement it. I basically have a slightly tweaked version of this: http://www.stevedawson.com/phpinvoiceit-demo.php So when you update invoice it renders the page. I would like to then convert the rendered page to a pdf and be able to send it to a user via another form with email addy, subject etc. Is there even a cheap paid script i could use that you know of ?