Jump to content

esoteric

Members
  • Posts

    104
  • Joined

  • Last visited

    Never

Everything posted by esoteric

  1. been searching everywhere, there seems to be a ton of 'contact us' style forms where someone can send the website an email but im looking for the opposite where i send out a email 'template' and all i need to so i fill in a few text fields which will be the customer email addy, and to bits of info which is a username and password. email [i type customers email] to [i type in name] thanks you for ..blah blah... below is info you need to log in... (same message sends to everyone) username[text box i can fill in] p/w [text box i need to fill in] Really appreciate the help, sorry to be a pain but im struggling with this and i know there are some really smart people here.
  2. It may help if i show you the sort of thing im trying to do // mailto wont work as i would need to change the script everytime. <form method="post" action="mailto:[email protected]"> <p>customer name</p> <input name="name" type="text" /> <p>customer email</p> <input name="name" type="text" /> <p>message</p> <textarea name="message" cols="" rows="">thank you for ... blah blah</textarea> <p><strong>customer login details</strong></p> <p>username</p> <input name="name" type="text" /> <p>password</p> <input name="name" type="text" /> <br /> <input name="submit" type="button" value="submit" /> </form> Once its all filled in i just want to hit submit for it too send to the customer obviously i need it to output a lot more pretty than that but hopefully it will help someone help me.
  3. Hi. I'm trying to write a simple html/php form which i fill in and it will send an email. When a customer sends me a order form instead of having to write each reply manually i want a form on my website which i will password protect to send mail. It needs to be a form that i can fill in the text fields then hit send to email it too the 'customer email' address. customer email: [text field] (this is who the email will get sent too) customer name: [text field] order number: [text field] message: Thank you .. blah blah (standard message that will be sent to everyone) Log in information. your username [text field] your password [text field] I know the the above may look confusing but its hard to explain and im not that good at scripting so any help would be more than appreciated. Thank you.
  4. Hi guys, im struggling to grasp php so please go easy on me. Im using this file: http://code.google.com/p/jcart/downloads/list Im trying to set up a shopping cart, its working but i want to make some additions that i just can't quite figure out. At the moment i have a form you need fill in <table border="10" bordercolor="#333" align="center" cellpadding="1" cellspacing="1" style="background:#000; color: #999;"> <tr align="center"><td colspan="2"><strong>Thank you for choosing to shop with WoodCreation, </strong> <strong>please </strong><strong>fill out the order form below so we can process your order</strong></td> </tr> <tr align="left"><td width="109"><p>First Name:</p></td><td width="209"><input type="text" size="30" name="firstname"></td></tr> <tr align="left"><td><p>Last Name:</p></td><td><input type="text" size="30" name="lastname"></td></tr> <tr align="left"><td><p>Email:</p></td><td><input type="text" size="30" name="email"></td></tr> <tr align="left"><td><p>Phone:</p></td><td><input name="phone" type="text" size="30"></td></tr> <tr align="left"><td><p>Delivery Type:</p></td><td><select name="subject" id="subject"> <option value="delivery" selected>Delivery</option> <option value="pickup" selected>Pickup</option> </select></td></tr> <tr align="left"><td colspan="2" valign="top"><p><strong>Please fill out the address form below.</strong><br /> </p></td></tr> <tr align="left"><td><p>House number:</p></td><td><input type="text" size="30" name="housenumber"></td></tr> <tr align="left"><td><p>Street 1:</p></td><td><input type="text" size="30" name="street1"></td></tr> <tr align="left"><td><p>Street 2:</p></td><td><input type="text" size="30" name="street2"></td></tr> <tr align="left"><td><p>County:</p></td><td><input type="text" size="30" name="county"></td></tr> <tr align="left"><td><p>Postcode:</p></td><td><input type="text" size="30" name="postcode"></td></tr> <tr align="left"><td> </td><td><input type="submit" value="Send"><font face="arial" size="1"> </table> When you press send it emails me the details, but what i want it too do is replace the checkout page from the file above with this form, so when once you filled the form out it then continues to paypal, instead of pressing the 'pay with paypal' button that exists now. The other thing i need to do is the form above has a drop box for either 'pickup' or 'delivery', if delivery is selected i need to add the delivery cost on to each item, let say delivery was £10 and the customer had 4 items, at checkout the total would be the value of the items + £40 (10 for each item) but if 'pick up' is selected it just continue without anything being added too it. Also is there anyway i can set some sort of order number for each order form once they have been submitted? Thanks very much, im trying to learn this but struggling so appreciate any help on the matter
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.