|
Our family operated store is located in the North East of Scotland on the High Street (A95) in the beautiful Speyside village of Charlestown of Aberlour 115-119 High Street, Aberlour, Moray AB38 9PB Telephone +44 (0)1340 871741 info@ourwoodentoyshop.com Shop Opening times Mon - Fri 8-6 Sat 9-5 Sun 10-5 You can always purchace wooden toys via our websites or our eBay store if our high street store is closed or you are not able to get into our store. We will deliver them directly to you as soon as practicly possible (normally posted same day as order). STOP PRESS 24 hour Pay at pump facilities now available for payment on select credit and debit cards
mysql_select_db($database_db, $db);
$query_settingsx = "SELECT * FROM settings";
$settingsx = mysql_query($query_settingsx, $db) or die(mysql_error());
$row_settingsx = mysql_fetch_assoc($settingsx);
$totalRows_settingsx = mysql_num_rows($settingsx);
$email = $row_settingsx['contactemail'];
$name = $row_settingsx['busname'];
$sendto_email = "$email";
// The settings below should be fine but you can edit them anyway
// Disable email addresses from the same domain as your email from being sent?
// This will often reduce spam but will not allow antone to send from anything@yourdomain.
$checkdomain = "no";
// Language variables
$lang_title = "You can contact $name using this form";
$lang_notice = "All fields are required";
$lang_name = "Your name";
$lang_youremail = "Your email";
$lang_subject = "Subject";
$lang_message = "Message";
$lang_confirmation = "Enter code";
$lang_submit = "Send email";
// Error messages
$lang_error = "Your email has not been sent the following errors were found:"; $lang_noname = "You did not enter your name"; $lang_noemail = "You did not enter your email address"; $lang_nosubject = "You did not enter a subject"; $lang_nomessage = "You did not enter a message"; $lang_nocode = "You did not the validation code"; $lang_wrongcode = "You entered the validation code incorrectly. Please note that it is case sensitive"; $lang_invalidemail = "The email address that you entered appears to be invalid"; // Success $lang_sent = "Your email has been sent. The following message was submitted:"; // Width of form inputs. Must include unites, e.g px $input_width = "300px"; // How do you want the title aligned? $title_align = "left"; // Can be left, center or right // To format the title text. If you are not confident with css then probably best left as it is $title_css = "font-weight: bold; font-size: 120%;"; // Colour of error message $error_colour = "red"; // Must use HTML compatible colour // You can choose whether to display Powered by BELLonline PHP mailer script at the bottom of the mail form // I understand that some peopme might not want to show our link, but we would appreciate it if you could // Possible options are yes or no $showlink = "yes"; // Thanks for using the PHP mailer script, I hope you find it useful! ?> |