|
|
|
|
|
|
|
Adresse
officielle
Belgian Triumph Club asbl
Rue de l' Ardenne, 29
B 5024 - Marche-les-Dames
BELGIQUE
Tél. & Fax : 0032 / (0)81 58.17.36
|
|
|
Adresse courrier
Belgian Triumph Club asbl
Edward Bodson - Président
Rue de l' Ardenne, 29
B 5024 Marche-les-Dames
BELGIQUE
Tél. & Fax : 0032 / (0)81 58.17.36
bodson.edward@skynet.be
Adresse électronique:
// Name of the file to include for the HTML form.
$incForm = $phpMailRoot."inc/form.html";
// Name of the file to include for the welcome page.
$incWelcome = $phpMailRoot."inc/welcome.html";
// Name of the file to include for missing required fields.
$incMissing = $phpMailRoot."inc/missing.html";
// Name of the file to include for a bad email address.
$incBadEmail = $phpMailRoot."inc/bad_mail.html";
// Name of the file to include for thanking the user.
$incThanks = $phpMailRoot."inc/thanks.html";
// Define main variables
// Who the mail should go to. Leaving undefined skips send (log/autoreply only)
$defTo = "info@triumph-belgium.be";
// Which values need to be input in form.
$defRequired = "firstname,lastname,email";
// Should we do a test for a valid from address?
// Note: even with this turned off, the script will not
// send an autoreply to an invalid address. Also, if from
// is not a required field, it will not be checked.
$defCheckemail = 1;
// The subject the sent mail should have.
$defSubject = "Belgian Triumph Club ABSL";
// Any extra headers for the sent mail. Don't forget the \n
// between them!
// $defSendextras = "X-Priority: high\n";
// The body template for the sent mail.
// Bonjour %firstname% is used to print the value of the form element named firstname
$defTemplate = "Voici le résumé du contenu du formulaire (site web).\nLes information sur l'internaute sont :\n\n"
."%firstname% %lastname%\n%email%\n%street%\n%city%\n%province%\n%postal%\n%country%\n%comments%";
// Who it should appear to be from. Leave commented
// out if you don't want to allow empty from lines.
// $defFrom = "webuser@here.com";
// Who the autoreply should appear to be from. Leave
// commented out if you want to maintain 1.0 compatibility.
// If defTo is undefined (i.e. you only want to log the mail)
// you can still have an autoreply by defining this variable
// and the autoreply variable.
// $defAutoemail = "me@here.com";
// The subject the autoreply should have. Comment it
// out if you want to maintain 1.0-style autoreply subjects.
$defAutosubject = "Merci pour votre visite !";
// A prefix to the subject of autoreply messages. If
// left undefined, will default to "Auto-Reply: "
// Will not be used if "autosubject" is defined
// $defAutoprefix = "Re: ";
// Any extra headers for the autoreply. Don't forget the \n
// between them!
// $defAutoextras = "Reply-To: realperson@here.com\nErrors-To:me@here.com\n";
// The body template for the autoreply.
// ie. %firstname% is used to print the value of the form element named firstname
$defAutoreply = "Bonjour %firstname% %lastname%!\n\n"
." Merci de nous avoir contacté !\n"
." Voici le résumé du message que vous nous avez transmis:\n\n"
."\t%firstname% %lastname%\n\t%email%\n\t%street%\n\t%city%\n\t"
."%province%\n\t%postal%\n\t%country%\n\t%comments%\n"
."\n\n\n"
."\t\t\t\tCordialement,\n\n"
."\t\t\t\t LE BELGIAN TRIUMPH CLUB asbl (www.triumph-belgium.be)";
// Ask user for a second submission on completion?
// (Only works for "normal" version)
$defAskagain = 0;
// Text to output when asking for another submission
$defAsktext = " Vous pouvez nous envoyer une autre message si vous le désirez. ";
// Define varibles needed for database access (logging)
// Do logging?
$defLog = 0;
// Log bodies?
$defLogbodies = 0;
// MySQL hostname
$db_hostname = "";
// MySQL username
$db_user = "";
// MySQL password
$db_password = "";
// MySQL database name
$db_database = "";
// MySQL table name
$db_table = "maillog";
// Some system values. These shouldn't normally need
// to be changed.
// Define common library
$library = $phpMailRoot."lib/common.lib";
// Define method of finding self_name
// Only change this if ACTION="" is showing up in
// your forms instead of action="index.php3"
$whoami = basename(getenv("PATH_INFO"));
// Toggle whether to display some debugging info.
// Turn off after testing your configuration.
$debug = 0;
// That's it!
?> | |