i have made a html form wch contain .. some data fields, numbers, etc .. and 2 picture uploading fields too .. so is there any scripts .. (php or any other language) to send such form to mail.. including uploaded picture and form contents ...
PHPMailer-FE is their Form-to-Email version of their php mailer script. Google PhpMailer-Fe (I can't post live links yet)
ok thanks frnd .. i will try phpmailer .. it have the option to upload files or attach files ? .. i had tried tectile phpformmail script .. it had successfully send form content but dint find option to attach files
some prob !! ...i created form using some online form creation site .. and when i submit ..pictures are uploaded ....it work fine ..but the text content is not get properly .. the only data i got is email .. and some words like .. example .. variables .. etc ...
actually it not showing any error .. when i submit it showing submitted correctly .. and i will get mail which contain attached images and docs but form data not available .. only email address and some other text are available ..
I've sent you an email. It might be an idea if you don't want to show everyone your page to send some "example" code of the form, the output it's giving you and the desired output; e.g. <form action='target.php' method='POST' enctype='multipart/form-data'> Name: <input type='text' name='name' /><br /> Email: <input type='text' name='email' /><br /> <input type='submit' value='Go' /> </form> //---target.php---// mail($_POST['email'],"Welcome","Welcome to our site " . $_POST['name']); Output ------- Welcome to our site $_POST['name'] Desired Output --------------- Welcome to our site Stephen If you put a bit of effort into describing your problem then people will 1) Be able to help you better 2) Know that you are at least putting some time yourself into the problem and not just expecting other people to write all your code.