Jump to content

SuperWebman

Members
  • Posts

    21
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

SuperWebman's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. well the form actually sends an email to our sales manager that has the customer info. But I want it so that when the customer sends it will also email them the coupon.
  2. Ok hopefully someone can help me with this, because i'm at a lost. I installed a plugin called Fast Secure Contact Form. Which is an awesome form, but what I need to do if this is possible for the form to email the client a coupon that i designed after they submit the form. That will populate their information from the form to it. The plugin is pretty cool and you can add all kinds of things to it. Here is the plugin site http://www.fastsecurecontactform.com/ it has an option where posted data can be sent as a query string on the redirect URL http://www.fastsecurecontactform.com/sending-data-by-query-string Any help on this would be awesome, because my boss just dropped this on me today and he wanted it done like last week. :-\ Thanks, B
  3. ok so this is working as far as the form submitting to sales, but how would i go by making it also send a coupon to a persons email after they submit it? Is this possible? I'm moving this to another area because I don't think this is the right place for it.
  4. Well this is kinda what I did. I just made a wordpress site and put a plugin that basically would take the information that is inputted into it and email it to sales then redirect to the coupon site. Only problem now is that they are wanting when the people are redirected for all their information to be there and two more labels. One is stock # and the other is authorized by. These will be filled in when they take to dealership by manager. Oh and they have to be able to print this off lol.
  5. thanks so much i'm in a rush on this so i appreciate the advice
  6. Hey guys and gals. I just got this thrown on my like 5 mins ago and i'm not sure how to start this. What I need to do is this: I have a coupon ad but I don't want people to be able to see or print it off unless they give me their information. How can I start this? Thanks, B
  7. ah I see. oh well. I just wrote on the website to please fill out form completely otherwise it will not be submitted correctly and delay report. Hope that will help lol
  8. Uh I think so. :-\ <---------javascript newbie
  9. well thank you guys for helping me. And....I actually learned something today lol. Which is always good
  10. ok i changed a few things but still doesn't seem to work if I leave some fields blank <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="file:///C|/Users/bschomp/Desktop/style.css" rel="stylesheet" type="text/css" media="screen" /> <title>Your Car Report | Kansas Vehicles | Nebraska Autos | Missouri Title Info | Iowa Car </title> <style type="text/css"> body { background-image: url(images/images/bluebg.jpg); } #header { background-color: #CCC; height: 500px; width: 600px; margin-top: 0px; margin-right: 500px; margin-bottom: 800px; margin-left: 501px; } #LOGO { height: 98px; width: 232px; margin-top: 200px; margin-bottom: 0px; margin-right: 0px; float: left; background-color: transparent; } #background { background-color: transparent; margin: height: 900px; width: 1400px; } #leftsidebar { background-color: transparent; height: 600px; width: 1400px; margin-top: 200px; margin-right: 500px; margin-bottom: 0px; margin-left: 0px; padding-left: 125px; } #leftfloat { margin: 0px; float: left; height: 590px; width: 300px; } #middlefloat { float: left; margin: 0px; height: 500px; width: 700px; background-color: #fff; } #background { } #logo { float: right; height: 98px; width: 232px; padding-right: 20px; } #middle { margin: auto; height: 465px; width: 650px; margin-top: 20px; background-color: #657489; background-image: url(images/images/mediumbkgd.png); } #about { background-color: transparent; margin: 0px; float: right; height: 488px; width: 250px; padding-right: 20px; padding-top: 50px; } #rightinfo { margin: 0px; float: left; height: 360px; width: 309px; } </style> <script src="gen_validatorv4.js" type="text/javascript"></script> <--------ADDED THIS LINE </head> <body> <div id="background"> <div id="leftsidebar"> <div id="leftfloat"> <div id="logo"><img src="images/images/logo.png" width="232" height="98" /></div> <div id="about"><img src="images/images/sidebar.png" width="245" height="487" /></div> </div> <div id="middlefloat"> <div id="middle"> <form id="form1" name="form1" method="post" action="contactforprocess.php"> <p> <label for="f_name"><br /> <br /> <br /> <br /> <br /> First Name </label> <input type="text" size="25" name="f_name" id="f_name" /> <label for="l_name">Last Name </label> <input type="text" name="l_name" size="25"id="l_name" /> </p> <p> </p> <p> <label for="Address"> Address </label> <input type="text" name="add" size="45" id="add" /> <label for="state"> State</label> <select name="state" id="state"> <option>Choose State</option> <option>Iowa</option> <option>Kansas</option> <option>Missouri</option> <option>Nebraska</option> <option>Oklahoma</option> </select> </p> <p> </p> <p> <label for="phone"> Phone </label> <input type="text" name="phone" id="phone" /> <label for="email"> Email</label> <input type="text" name="email" size="30" id="email" /> <br /> <br /> <br /> <br /> <label for="vin"> VIN # </label> <input type="text" size="45" name="vin" id="vin" /> </p> <p> <input type="submit" name="submit" id="submit" value="Submit" /> </p> </form> <script type="text/javascript"> var frmvalidator = new Validator("form1"); frmvalidator.addValidation("f_name","req","Please enter your First Name"); frmvalidator.addValidation("f_name","maxlen=20", "Max length for FirstName is 20"); frmvalidator.addValidation("l_name","req"); frmvalidator.addValidation("l_name","maxlen=20"); frmvalidator.addValidation("add","maxlen=45") frmvalidator.addValidation("phone","maxlen=12"); frmvalidator.addValidation("phone","numeric"); frmvalidator.addValidation("email","maxlen=50"); frmvalidator.addValidation("email","req"); frmvalidator.addValidation("email","email"); frmvalidator.addValidation("vin","maxlen=17"); frmvalidator.addValidation("vin","req"); </script> <p> </p> </div> </div> <div id="rightinfo"><img src="images/images/sidebaright.png" width="309" height="360" /></div> </div> </div> </body> </html>
  11. Hey guys new to Javascript. This is supposed to be a validation script so that people will have to fill out all fields before they submit the form. When I upload this to server to my site. it isn't working. Any ideas? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="file:///C|/Users/bschomp/Desktop/style.css" rel="stylesheet" type="text/css" media="screen" /> <title>Your Car Report | Kansas Vehicles | Nebraska Autos | Missouri Title Info | Iowa Car </title> <style type="text/css"> body { background-image: url(images/images/bluebg.jpg); } #header { background-color: #CCC; height: 500px; width: 600px; margin-top: 0px; margin-right: 500px; margin-bottom: 800px; margin-left: 501px; } #LOGO { height: 98px; width: 232px; margin-top: 200px; margin-bottom: 0px; margin-right: 0px; float: left; background-color: transparent; } #background { background-color: transparent; margin: height: 900px; width: 1400px; } #leftsidebar { background-color: transparent; height: 600px; width: 1400px; margin-top: 200px; margin-right: 500px; margin-bottom: 0px; margin-left: 0px; padding-left: 125px; } #leftfloat { margin: 0px; float: left; height: 590px; width: 300px; } #middlefloat { float: left; margin: 0px; height: 500px; width: 700px; background-color: #fff; } #background { } #logo { float: right; height: 98px; width: 232px; padding-right: 20px; } #middle { margin: auto; height: 465px; width: 650px; margin-top: 20px; background-color: #657489; background-image: url(images/images/mediumbkgd.png); } #about { background-color: transparent; margin: 0px; float: right; height: 488px; width: 250px; padding-right: 20px; padding-top: 50px; } #rightinfo { margin: 0px; float: left; height: 360px; width: 309px; } </style> </head> <body> <div id="background"> <div id="leftsidebar"> <div id="leftfloat"> <div id="logo"><img src="images/images/logo.png" width="232" height="98" /></div> <div id="about"><img src="images/images/sidebar.png" width="245" height="487" /></div> </div> <div id="middlefloat"> <div id="middle"> <form id="form1" name="form1" method="post" action="contactforprocess.php"> <p> <label for="f_name"><br /> <br /> <br /> <br /> <br /> First Name </label> <input type="text" size="25" name="f_name" id="f_name" /> <label for="l_name">Last Name </label> <input type="text" name="l_name" size="25"id="l_name" /> </p> <p> </p> <p> <label for="Address"> Address </label> <input type="text" name="add" size="45" id="add" /> <label for="state"> State</label> <select name="state" id="state"> <option>Choose State</option> <option>Iowa</option> <option>Kansas</option> <option>Missouri</option> <option>Nebraska</option> <option>Oklahoma</option> </select> </p> <p> </p> <p> <label for="phone"> Phone </label> <input type="text" name="phone" id="phone" /> <label for="email"> Email</label> <input type="text" name="email" size="30" id="email" /> <br /> <br /> <br /> <br /> <label for="vin"> VIN # </label> <input type="text" size="45" name="vin" id="vin" /> </p> <p> <input type="submit" name="submit" id="submit" value="Submit" /> </p> </form> <script type="text/javascript"> var frmvalidator = new Validator("form1"); frmvalidator.addValidation("f_name","req","Please enter your First Name"); frmvalidator.addValidation("f_name","maxlen=20", "Max length for FirstName is 20"); frmvalidator.addValidation("l_name","req"); frmvalidator.addValidation("l_name","maxlen=20"); frmvalidator.addValidation("add","maxlen=45") frmvalidator.addValidation("phone","maxlen=12"); frmvalidator.addValidation("phone","numeric"); frmvalidator.addValidation("email","maxlen=50"); frmvalidator.addValidation("email","req"); frmvalidator.addValidation("email","email"); frmvalidator.addValidation("vin","maxlen=17"); frmvalidator.addValidation("vin","req"); </script> <p> </p> </div> </div> <div id="rightinfo"><img src="images/images/sidebaright.png" width="309" height="360" /></div> </div> </div> </body> </html>
  12. Yup it is only prob I have is if someone doesn't fill out all fields of form it will go to a white page when submitted and won't email. so I need to do some validation script to prevent that . any ideas?
  13. well all of the emails are actually going to 3 of our dealerships. so they are name@midwestsuperstore.com, name@rustyeckfordomaha.com, and finally name@rollinghillsautoplaza.com. But it seemed to work they way it is and I am getting all of the form info.
×
×
  • 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.