http://www.nontando.com/zim.php
On the same page I have created a email contact form that the customer can complete. You can test it, but when the user presses the send form, a Internet Explorer message comes up telling the user,"submitting this form will reveal your email address.....when you bypass this by pressing ok, your email software comes up, eg. outlook express. What I am looking to do is have to all automated similar to the way contact_us.php works - seamless!
This is what my code looks like. It is very basic as it is a pretty simple form, but if anyone can give me advice how it can be automated and is it possible to incorporate code that ensures the emails is trigerred without any ie prompts and/or email software popping up. It worls lilke that with contact_us.php
Thanks, Gary
<?php
/*
$Id: conditions.php,v 1.3 2001/12/20 14:14:14 dgw_ Exp $
Nontando - Decor, Gifts and Art from Africa!
http://www.nontando.com
Copyright (c) 2007,2008 Nontando
Released under the GNU General Public License
*/
define('HEADING_TITLE', 'Zimbabwe Packages');
define('NAVBAR_TITLE', 'Zimbabwe Packages');
define('TEXT_INFORMATION', '
<font face="Arial, Helvetica, sans-serif" size="2"> Welcome to our Zimbabwe Packages! <p>
The following PDF files provide you with the itinerary for each package:
</font> </p>
<p><font face="Arial, Helvetica, sans-serif" size="2"><b>CLASSIC VICTORIA FALLS </b></font></p>
<a target="_blank" href="Classic_Victoria_Falls.pdf">Click here to download Classic Victoria Falls itinerary</a>
<p><font face="Arial, Helvetica, sans-serif" size="2"><b>WILDLIFE AND WATERFALLS </b></font></p>
<p><font face="Arial, Helvetica, sans-serif" size="2"><b>ZAMBIA AND ZIMBABWE CIRCUIT </b></font></p>
<BR>
<p><font face="Arial, Helvetica, sans-serif" size="2"><b>Please complete the contact form below and we will respond as soon as possible: </b></font></p>
<CENTER>
<form action="mailto:info@nontando.com" method="get" enctype="text/plain">
<p>Name: <input type="text" name="name" /></p>
<p>Email: <input type="text" name="email" /></p>
<p>Comments:<br />
<textarea cols="30" rows="20" name="comments"></textarea></p>
<p><input type="submit" name="submit" value="Send" />
<input type="reset" name="reset" value="Clear Form" /></p>
</form>
');
?>















