How can I make an HTML email referral box for my website?
-
I want it to look like this Your name: Your Email: Friend's Name: Friend's Email: and I want it to say this Subject: Hey I found this really cool site! Message: Hey there, FRIEND'S NAME found this website and would like you to check it out! URL Thanks, YOUR NAME YOUR EMAIL How would I do that?
-
Answer:
You could make a form with something like this: <html> <head> </head> <body> <form method="post" action="contact.php"> <p>Your name: <input name="yname" type="text"> </p> <p>Your Email: <input name="yemail" type="text"> </p> <p>Friends name: <input name="fname" type="text"> </p> <p>Friends Email: <input name="femail" type="text"> </p> <p> <input type="submit"> </p> </form> </body> </html> then in contact.php <?php $to = $_REQUEST['femail']; $subject = "Hey I found this really cool site!"; $email = $_REQUEST['email'] ; $message = '<html><body><p>Hey there, ' . $_REQUEST['fname'] . " found this website and would like you to check it out! <a href='http://google.com'>Google.com</a><… . $_REQUEST['yname'] .'<br>' . $_REQUEST['yemail'] . '</p></body></html>' ; $headers = "From: XYZ <" . $email . ">\n" . "X-Mailer: PHP 4.x\n" . "MIME-Version: 1.0\n" . "Content-type: text/html; charset=iso-8859-1" ; $sent = mail($to, $subject, $message, $headers) ; if($sent) {print "Your mail was sent successfully"; } else {print "We encountered an error sending your mail"; } ?> Should be what you want.. I dont really know PHP well so I took ages writing this specially for you! :)
Maria J at Yahoo! Answers Visit the source
Related Q & A:
- How can I make my PC record shows from my Sky box?Best solution by Yahoo! Answers
- How can I make free advertisement website?Best solution by Yahoo! Answers
- How can I make a popular website similar to Myspace?Best solution by Yahoo! Answers
- How can i make a banner for a website?
- How can I make a second email address on yahoo.com?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.