Notes techniques de zhaoJian

Programme PHP pour envoyer des formulaires par e-mail

Technologie ~8530 mots · 22 min de lecture - vues

Récemment, lors de la refonte du site web, je voulais créer un programme pour soumettre des formulaires en ligne par e-mail. Beaucoup de solutions ne fonctionnaient pas, alors j’ai finalement développé la mienne.

<html>
<body>
<?php
function spamcheck($field)
{
//filter_var() sanitizes the e-mail
//address using FILTER_SANITIZE_EMAIL
$field=filter_var($field, FILTER_SANITIZE_EMAIL);
//filter_var() validates the e-mail
//address using FILTER_VALIDATE_EMAIL
if(filter_var($field, FILTER_VALIDATE_EMAIL))
{
return TRUE;
}
else
{
return FALSE;
}
}
if (isset($_REQUEST['w_14']))
{//if "email" is filled out, proceed
//check if the email address is invalid
$mailcheck = spamcheck($_REQUEST['w_14']);
$w_1_check = $_REQUEST['w_1'];
$w_8_check = $_REQUEST['w_8'];
$w_13_check = $_REQUEST['w_13'];
if ($mailcheck==FALSE)
{
echo "<script language=\"JavaScript\">\r\n";
echo " alert(\"Veuillez remplir votre adresse e-mail soigneusement afin que notre personnel puisse vous contacter. Merci de votre coopération!\");\r\n";
echo " history.back();\r\n";
echo "</script>";
}
if ($w_1_check=='')
{
echo "<script language=\"JavaScript\">\r\n";
echo " alert(\"Veuillez remplir le nom de l'entreprise soigneusement afin que notre personnel puisse vous contacter. Merci de votre coopération!\");\r\n";
echo " history.back();\r\n";
echo "</script>";
}
if ($w_8_check=='')
{
echo "<script language=\"JavaScript\">\r\n";
echo " alert(\"Veuillez remplir votre nom soigneusement afin que notre personnel puisse vous contacter. Merci de votre coopération!\");\r\n";
echo " history.back();\r\n";
echo "</script>";
}
if ($w_13_check=='')
{
echo "<script language=\"JavaScript\">\r\n";
echo " alert(\"Veuillez remplir votre numéro QQ/MSN soigneusement afin que notre personnel puisse vous contacter. Merci de votre coopération!\");\r\n";
echo " history.back();\r\n";
echo "</script>";
}
else
{//send email
$email = $_REQUEST['w_14'] ;
$subject = $_REQUEST['w_1'] . " " . $_REQUEST['w_8'] ;
$message = "Nom de l'entreprise :". $_REQUEST['w_1'] . "\r\n" . "Langues du site web :". $_REQUEST['w_2_1'] . "/" . $_REQUEST['w_2_2'] . "/" . $_REQUEST['w_2_3'] . "/" . $_REQUEST['w_2_4'] . "/" . $_REQUEST['w_2_5'] . "/" . "\r\n" . "Sites web de référence :". $_REQUEST['w_3'] . "\r\n" . "Description de l'activité :". $_REQUEST['w_4'] . "\r\n" . "Budget :". $_REQUEST['w_5'] . "-" . $_REQUEST['w_6'] . "\r\n" . "Délai de réalisation souhaité :". "Date de fin souhaitée" . $_REQUEST['w_7'] . "\r\n" . " Nombre de jours souhaité" . $_REQUEST['w_7_1'] . "\r\n" . "Autres exigences :". $_REQUEST['w_7_2'] . "\r\n" . "=============================================================" . "\r\n" . "Nom :". $_REQUEST['w_8'] . "\r\n" . "Genre :". $_REQUEST['w_9'] . "\r\n" . "Téléphone :". $_REQUEST['w_11'] . "\r\n" . "Mobile :". $_REQUEST['w_12'] . "\r\n" . "QQ/MSN :". $_REQUEST['w_13'] . "\r\n" . "E-mail :". $_REQUEST['w_14'] . "\r\n" . "Skype :". $_REQUEST['w_15'] . "\r\n" . "Code postal :". $_REQUEST['w_16'] . "\r\n" . "Adresse détaillée :". $_REQUEST['w_17'] . "\r\n";
mail("admin@zhaojian.net", "$subject Demande de développement de site web.",
$message, "From: $email");
echo "<script language=\"JavaScript\">\r\n";
echo "alert(\"Informations soumises avec succès! Veuillez attendre que notre personnel vous contacte. Retour automatique à la page d'accueil\");\r\n";
echo "location.replace(\"http://www.zhaojian.net/\");\r\n";
echo "</script>";
}
}
else
{//if "email" is not filled out, display the form
echo "<form id='form1' action='http://www.zhaojian.net/b/b.php' method='post' name='form1'>
<table class='table_1' cellspacing='0' cellpadding='0' width='675' border='0'>
<tbody>
<tr>
<th colspan='2'>Formulaire de demande de développement de site web</th>
</tr>
<tr>
<td class='input_1' width='125'>Nom de l'entreprise</td>
<td class='input_2' width='550'><input class='input_text' style='width: 300px' name='w_1' type='text' /></td>
</tr>
<tr>
<td class='input_1' width='125'>Langues du site web</td>
<td class='input_2' width='550'><input type='checkbox' checked='checked' name='w_2_1' value='Chinois simplifié' /> <label for='w_2_1'>Chinois simplifié</label> <input type='checkbox' name='w_2_2' value='Chinois traditionnel' /> <label for='w_2_2'>Chinois traditionnel</label> <input type='checkbox' name='w_2_3' value='Anglais' /> <label for='w_2_3'>Anglais</label> <input type='checkbox' name='w_2_4' value='Japonais' /> <label for='w_2_4'>Japonais</label> <input type='checkbox' name='w_2_5' value='Autres langues' /> <label for='w_2_5'>Autres langues</label></td>
</tr>
<tr>
<td class='input_1' width='125'>Sites web de référence</td>
<td class='input_2' width='550'><input style='width: 300px' name='w_3' type='text' /></td>
</tr>
<tr>
<td class='input_1' width='125'>Description de l'activité</td>
<td class='input_2' width='550'><textarea class='input_text' style='width: 300px' name='w_4'></textarea></td>
</tr>
<tr>
<td class='input_1' width='125'>Budget</td>
<td class='input_2' width='550'><input class='input_text' name='w_5' type='text' /> -- <input class='input_text' name='w_6' type='text' /> EUR</td>
</tr>
<tr>
<td class='input_1' width='125'>Délai de réalisation souhaité</td>
<td class='input_2' width='550'><input class='input_text' name='w_7' value='Date de fin souhaitée' type='text' /> <input class='input_text' name='w_7_1' value='Nombre de jours souhaité' type='text' /> jours</td>
</tr>
<tr>
<td class='input_1' width='125'>Autres exigences</td>
<td class='input_2' width='550'><textarea class='input_text' style='width: 300px' name='w_7_2'></textarea></td>
</tr>
</tbody>
</table>
<table class='table_1' cellspacing='0' cellpadding='0' width='675' border='0'>
<tbody>
<tr>
<th colspan='4'>Informations de contact</th>
</tr>
<tr>
<td class='input_1' width='129'>Nom</td>
<td class='input_2' width='202'><input name='w_8' type='text' /></td>
<td class='input_1' width='96'>Genre</td>
<td class='input_2' width='246'><input type='radio' checked='checked' name='w_9' value='Mme' />Mme <input type='radio' name='w_9' value='M.' />M.</td>
</tr>
<tr>
<td class='input_1' align='left'>Téléphone</td>
<td class='input_2'><input class='input_text' name='w_11' type='text' /></td>
<td class='input_1'>Mobile</td>
<td class='input_2'><input name='w_12' type='text' /></td>
</tr>
<tr>
<td class='input_1'>QQ / MSN</td>
<td class='input_2'><input class='input_text' name='w_13' type='text' /></td>
<td class='input_1'>E-mail</td>
<td class='input_2'><input name='w_14' type='text' /></td>
</tr>
<tr>
<td class='input_1'>Skype</td>
<td class='input_2'><input class='input_text' name='w_15' type='text' /></td>
<td class='input_1'>Code postal</td>
<td class='input_2'><input name='w_16' type='text' /></td>
</tr>
<tr>
<td class='input_1'>Adresse détaillée</td>
<td class='input_2'><input name='w_17' type='text' /></td>
<td class='input_1'>Adresse de l'entreprise</td>
<td class='input_2'><input name='w_172' type='text' /></td>
</tr>
</tbody>
</table>
<table class='table_1' cellspacing='0' cellpadding='0' width='675' border='0'>
<tbody>
<tr>
<td class='input_2'>
<div align='center'><input id='send_mail_agent' type='submit' name='w_18' value='Submit' /></div>
</td>
</tr>
</tbody>
</table>
</form>";
}
?>
</body>
</html>
Partager :

Commentaires