Accueil > > > FORMULAIRE EMAIL AVEC PIECE JOINTE
FORMULAIRE EMAIL AVEC PIECE JOINTE
Information sur la source
Description
Formail + //Utilise une partie la classe Mail écrite par Léo West Ce script met un formulaire sur son site qui permet aux visiteurs d'envoyer un email au webmaster via un formulaire. La nouveauté est que ce script permet au visiteur de mettre un fichier joint avec son message. Le fichier joint est uploadé sur le serveur puis détruit une fois le mail envoyé. INSTALLATION Ce script ne fonctionne pas sous Online ou Nexen (et ne fonctionnera d'ailleurs jamais sur ces serveurs. J'ai tout essayé et j'ai contacté le support technique, ils ont tellement bien modifié leur fonction email() qu'il est impossible de l'utiliser avec ce script) Créer un répertoire et uploader les deux fichiers dedans Dans le fichier formail.php remplacer dans la ligne $dest="..." l'adresse email par la votre Créer un répertoire "upload" au même niveau que le répertoire que vous avez créé (pas dedans, à côté :-) ) Et voila...
Source
- // le code de la form.html
-
- <form vname="FormName" action="formmail.php" method="post" enctype="multipart/form-data" name="form">
- <table border="0" cellpadding="5" cellspacing="0" width="137">
- <tr>
- <td>Expéditeur:</td>
- <td><input type="text" name="email" size="35"></td>
- </tr>
- <tr>
- <td>Sujet</td>
- <td><input type="text" name="subject" size="35"></td>
- </tr>
- <tr>
- <td>Message</td>
- <td><textarea rows="12" name="msg" cols="60"></textarea></td>
- </tr>
- <tr>
- <td>Fichier joint:</td>
- <td><input type="hidden" name="MAX_FILE_SIZE" value="100000"><input name="NomFichier" type="file" size="16"></td>
- </tr>
- <tr>
- <td>Priorité:</td>
- <td>
- <div align="left">
- <select name="priority" size="1">
- <option value="1">Urgent
- <option value="2">Haute
- <option value="3">Moyenne
- <option value="4">Basse
- <option value="5">Très basse
- </select> <input type="submit" value="Envoyer"></div>
- </td>
- </tr>
- </table>
- </form>
-
- // code de formail.php
- <?
- /* PARAMETRAGE DU SCRIPT */
- /* ENTREZ VOTRE ADRESSE EMAIL ENTRE LES GUILLEMETS*/
-
- $dest="email@email.fr";
-
- $reponse=StripSlashes("Entrez ici la réponse quand une personne envoie le formulaire");
-
- /* FIN DU PARAMETRAGE */
-
-
- /*
-
-
- Le script utilise une version de la classe Mail() développée par Leo West (lwest.free.fr)
-
-
-
- DESCRIPTION
-
- this class encapsulates the PHP mail() function.
- implements CC, Bcc, Priority headers
- */
-
-
-
- class Mail
- {
-
- var $sendto= array();
- var $from, $msubject;
- var $acc= array();
- var $abcc= array();
- var $aattach= array();
- var $priorities= array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
-
-
- // Mail contructor
-
- function Mail()
- {
- $this->autoCheck( true );
- }
-
-
- /* autoCheck( $boolean )
- * activate or desactivate the email addresses validator
- * ex: autoCheck( true ) turn the validator on
- * by default autoCheck feature is on
- */
-
- function autoCheck( $bool )
- {
- if( $bool )
- $this->checkAddress = true;
- else
- $this->checkAddress = false;
- }
-
-
- /* Subject( $subject )
- * define the subject line of the email
- * $subject: any valid mono-line string
- */
-
- function Subject( $subject )
- {
- $this->msubject = strtr( $subject, "\r\n" , " " );
- }
-
-
- /* From( $from )
- * set the sender of the mail
- * $from should be an email address
- */
-
- function From( $from )
- {
-
- if( ! is_string($from) ) {
- echo "Class Mail: error, From is not a string";
- exit;
- }
- $this->from= $from;
- }
-
-
- /* To( $to )
- * set the To ( recipient )
- * $to : email address, accept both a single address or an array of addresses
- */
-
- function To( $to )
- {
-
- // TODO : test validité sur to
- if( is_array( $to ) )
- $this->sendto= $to;
- else
- $this->sendto[] = $to;
-
- if( $this->checkAddress == true )
- $this->CheckAdresses( $this->sendto );
-
- }
-
-
- /* Cc()
- * set the CC headers ( carbon copy )
- * $cc : email address(es), accept both array and string
- */
-
- function Cc( $cc )
- {
- if( is_array($cc) )
- $this->acc= $cc;
- else
- $this->acc[]= $cc;
-
- if( $this->checkAddress == true )
- $this->CheckAdresses( $this->acc );
-
- }
-
-
-
- /* Bcc()
- * set the Bcc headers ( blank carbon copy ).
- * $bcc : email address(es), accept both array and string
- */
-
- function Bcc( $bcc )
- {
- if( is_array($bcc) ) {
- $this->abcc = $bcc;
- } else {
- $this->abcc[]= $bcc;
- }
-
- if( $this->checkAddress == true )
- $this->CheckAdresses( $this->abcc );
- }
-
-
- /* Body()
- * set the body of the mail ( message )
- */
-
- function Body( $body )
- {
- $this->body= $body;
- }
-
-
- /* Send()
- * fornat and send the mail
- */
-
- function Send()
- {
- // build the headers
- $this->_build_headers();
-
- // include attached files
- if( sizeof( $this->aattach > 0 ) ) {
- $this->_build_attachement();
- $body = $this->fullBody . $this->attachment;
- }
-
- // envoie du mail aux destinataires principal
- for( $i=0; $i< sizeof($this->sendto); $i++ ) {
- $res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
- // TODO : trmt res
- }
-
- }
-
-
- /* Organization( $org )
- * set the Organisation header
- */
-
- function Organization( $org )
- {
- if( trim( $org != "" ) )
- $this->organization= $org;
- }
-
-
- /* Priority( $priority )
- * set the mail priority
- * $priority : integer taken between 1 (highest) and 5 ( lowest )
- * ex: $m->Priority(1) ; => Highest
- */
-
- function Priority( $priority )
- {
-
- if( ! intval( $priority ) )
- return false;
-
- if( ! isset( $this->priorities[$priority-1]) )
- return false;
-
- $this->priority= $this->priorities[$priority-1];
-
- return true;
-
- }
-
-
- /* Attach( $filename, $filetype )
- * attach a file to the mail
- * $filename : path of the file to attach
- * $filetype : MIME-type of the file. default to 'application/x-unknown-content-type'
- * $disposition : instruct the Mailclient to display the file if possible ("inline") or always as a link ("attachment")
- * possible values are "inline", "attachment"
- */
-
- function Attach( $filename, $filetype='application/x-unknown-content-type', $disposition = "inline" )
- {
- // TODO : si filetype="", alors chercher dans un tablo de MT connus / extension du fichier
- $this->aattach[] = $filename;
- $this->actype[] = $filetype;
- $this->adispo[] = $disposition;
- }
-
-
- /* Get()
- * return the whole e-mail , headers + message
- * can be used for displaying the message in plain text or logging it
- */
-
- function Get()
- {
- $this->_build_headers();
- if( sizeof( $this->aattach > 0 ) ) {
- $this->_build_attachement();
- $this->body= $this->body . $this->attachment;
- }
- $mail = $this->headers;
- $mail .= "\n$this->body";
- return $mail;
- }
-
-
- /* ValidEmail( $email )
- * return true if email adress is ok - regex from Manuel Lemos (mlemos@acm.org)
- * $address : email address to check
- */
-
- function ValidEmail($address)
- {
- if( ereg( ".*<(.+)>", $address, $regs ) ) {
- $address = $regs[1];
- }
- if(ereg( "^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
- return true;
- else
- return false;
- }
-
-
- /* CheckAdresses()
- * check validity of email addresses
- * if unvalid, output an error message and exit, this may be customized
- * $aad : array of emails addresses
- */
-
- function CheckAdresses( $aad )
- {
- for($i=0;$i< sizeof( $aad); $i++ ) {
- if( ! $this->ValidEmail( $aad[$i]) ) {
- echo "Class Mail, method Mail : invalid address $aad[$i]";
- exit;
- }
- }
- }
-
-
- /********************** PRIVATE METHODS BELOW **********************************/
-
-
-
- /* _build_headers()
- * [INTERNAL] build the mail headers
- */
-
- function _build_headers()
- {
-
- // creation du header mail
-
- $this->headers= "From: $this->from\n";
-
- $this->to= implode( ", ", $this->sendto );
-
- if( count($this->acc) > 0 ) {
- $this->cc= implode( ", ", $this->acc );
- $this->headers .= "CC: $this->cc\n";
- }
-
- if( count($this->abcc) > 0 ) {
- $this->bcc= implode( ", ", $this->abcc );
- $this->headers .= "BCC: $this->bcc\n";
- }
-
- if( $this->organization != "" )
- $this->headers .= "Organization: $this->organization\n";
-
- if( $this->priority != "" )
- $this->headers .= "X-Priority: $this->priority\n";
-
- }
-
-
-
- /*
- * _build_attachement()
- * internal use only - check and encode attach file(s)
- */
- function _build_attachement()
- {
- $this->boundary= "------------" . md5( uniqid("myboundary") ); // TODO : variable bound
-
- $this->headers .= "MIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\"$this->boundary\"\n\n";
- $this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\nContent-Type: text/plain; charset=us-ascii\nContent-Transfer-Encoding: 7bit\n\n" . $this->body ."\n";
- $sep= chr(13) . chr(10);
-
- $ata= array();
- $k=0;
-
- // for each attached file, do...
- for( $i=0; $i < sizeof( $this->aattach); $i++ ) {
-
- $filename = $this->aattach[$i];
- $basename = basename($filename);
- $ctype = $this->actype[$i]; // content-type
- $disposition = $this->adispo[$i];
-
- if( ! file_exists( $filename) ) {
- echo "Class Mail, method attach : file $filename can't be found"; exit;
- }
- $subhdr= "--$this->boundary\nContent-type: $ctype;\n name=\"$basename\"\nContent-Transfer-Encoding: base64\nContent-Disposition: $disposition;\n filename=\"$basename\"\n";
- $ata[$k++] = $subhdr;
- // non encoded line length
- $linesz= filesize( $filename)+1;
- $fp= fopen( $filename, 'r' );
- $data= base64_encode(fread( $fp, $linesz));
- fclose($fp);
- $ata[$k++] = chunk_split( $data );
-
- /*
- // OLD version - used in php < 3.0.6 - replaced by chunk_split()
- $deb=0; $len=76; $data_len= strlen($data);
- do {
- $ata[$k++]= substr($data,$deb,$len);
- $deb += $len;
- } while($deb < $data_len );
-
- */
- }
- $this->attachment= implode($sep, $ata);
- }
-
-
- } // class Mail
-
- $subject=StripSlashes($subject);
- $msg=StripSlashes($msg);
- $msg="Message depuis votre site web:
- $msg";
- $m= new Mail; // create the mail
- $m->From( "$email" );
- $m->To( "$dest");
- $m->Subject( "$subject" );
- $m->Body( $msg); // set the body
- if ($email1!="") {
- $m->Cc( "$email1");
- }
- $m->Priority($priority) ;
- if ("$NomFichier_name"!="") {
- copy("$NomFichier","../upload/$NomFichier_name");
- $m->Attach( "../upload/$NomFichier_name", "application/octet-stream" );
- }
- $m->Send();
- if ("$NomFichier_name"!="") {
- Unlink("../upload/$NomFichier_name"); }
- echo "$reponse";
-
- ?>
// le code de la form.html
<form vname="FormName" action="formmail.php" method="post" enctype="multipart/form-data" name="form">
<table border="0" cellpadding="5" cellspacing="0" width="137">
<tr>
<td>Expéditeur:</td>
<td><input type="text" name="email" size="35"></td>
</tr>
<tr>
<td>Sujet</td>
<td><input type="text" name="subject" size="35"></td>
</tr>
<tr>
<td>Message</td>
<td><textarea rows="12" name="msg" cols="60"></textarea></td>
</tr>
<tr>
<td>Fichier joint:</td>
<td><input type="hidden" name="MAX_FILE_SIZE" value="100000"><input name="NomFichier" type="file" size="16"></td>
</tr>
<tr>
<td>Priorité:</td>
<td>
<div align="left">
<select name="priority" size="1">
<option value="1">Urgent
<option value="2">Haute
<option value="3">Moyenne
<option value="4">Basse
<option value="5">Très basse
</select> <input type="submit" value="Envoyer"></div>
</td>
</tr>
</table>
</form>
// code de formail.php
<?
/* PARAMETRAGE DU SCRIPT */
/* ENTREZ VOTRE ADRESSE EMAIL ENTRE LES GUILLEMETS*/
$dest="email@email.fr";
$reponse=StripSlashes("Entrez ici la réponse quand une personne envoie le formulaire");
/* FIN DU PARAMETRAGE */
/*
Le script utilise une version de la classe Mail() développée par Leo West (lwest.free.fr)
DESCRIPTION
this class encapsulates the PHP mail() function.
implements CC, Bcc, Priority headers
*/
class Mail
{
var $sendto= array();
var $from, $msubject;
var $acc= array();
var $abcc= array();
var $aattach= array();
var $priorities= array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
// Mail contructor
function Mail()
{
$this->autoCheck( true );
}
/* autoCheck( $boolean )
* activate or desactivate the email addresses validator
* ex: autoCheck( true ) turn the validator on
* by default autoCheck feature is on
*/
function autoCheck( $bool )
{
if( $bool )
$this->checkAddress = true;
else
$this->checkAddress = false;
}
/* Subject( $subject )
* define the subject line of the email
* $subject: any valid mono-line string
*/
function Subject( $subject )
{
$this->msubject = strtr( $subject, "\r\n" , " " );
}
/* From( $from )
* set the sender of the mail
* $from should be an email address
*/
function From( $from )
{
if( ! is_string($from) ) {
echo "Class Mail: error, From is not a string";
exit;
}
$this->from= $from;
}
/* To( $to )
* set the To ( recipient )
* $to : email address, accept both a single address or an array of addresses
*/
function To( $to )
{
// TODO : test validité sur to
if( is_array( $to ) )
$this->sendto= $to;
else
$this->sendto[] = $to;
if( $this->checkAddress == true )
$this->CheckAdresses( $this->sendto );
}
/* Cc()
* set the CC headers ( carbon copy )
* $cc : email address(es), accept both array and string
*/
function Cc( $cc )
{
if( is_array($cc) )
$this->acc= $cc;
else
$this->acc[]= $cc;
if( $this->checkAddress == true )
$this->CheckAdresses( $this->acc );
}
/* Bcc()
* set the Bcc headers ( blank carbon copy ).
* $bcc : email address(es), accept both array and string
*/
function Bcc( $bcc )
{
if( is_array($bcc) ) {
$this->abcc = $bcc;
} else {
$this->abcc[]= $bcc;
}
if( $this->checkAddress == true )
$this->CheckAdresses( $this->abcc );
}
/* Body()
* set the body of the mail ( message )
*/
function Body( $body )
{
$this->body= $body;
}
/* Send()
* fornat and send the mail
*/
function Send()
{
// build the headers
$this->_build_headers();
// include attached files
if( sizeof( $this->aattach > 0 ) ) {
$this->_build_attachement();
$body = $this->fullBody . $this->attachment;
}
// envoie du mail aux destinataires principal
for( $i=0; $i< sizeof($this->sendto); $i++ ) {
$res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
// TODO : trmt res
}
}
/* Organization( $org )
* set the Organisation header
*/
function Organization( $org )
{
if( trim( $org != "" ) )
$this->organization= $org;
}
/* Priority( $priority )
* set the mail priority
* $priority : integer taken between 1 (highest) and 5 ( lowest )
* ex: $m->Priority(1) ; => Highest
*/
function Priority( $priority )
{
if( ! intval( $priority ) )
return false;
if( ! isset( $this->priorities[$priority-1]) )
return false;
$this->priority= $this->priorities[$priority-1];
return true;
}
/* Attach( $filename, $filetype )
* attach a file to the mail
* $filename : path of the file to attach
* $filetype : MIME-type of the file. default to 'application/x-unknown-content-type'
* $disposition : instruct the Mailclient to display the file if possible ("inline") or always as a link ("attachment")
* possible values are "inline", "attachment"
*/
function Attach( $filename, $filetype='application/x-unknown-content-type', $disposition = "inline" )
{
// TODO : si filetype="", alors chercher dans un tablo de MT connus / extension du fichier
$this->aattach[] = $filename;
$this->actype[] = $filetype;
$this->adispo[] = $disposition;
}
/* Get()
* return the whole e-mail , headers + message
* can be used for displaying the message in plain text or logging it
*/
function Get()
{
$this->_build_headers();
if( sizeof( $this->aattach > 0 ) ) {
$this->_build_attachement();
$this->body= $this->body . $this->attachment;
}
$mail = $this->headers;
$mail .= "\n$this->body";
return $mail;
}
/* ValidEmail( $email )
* return true if email adress is ok - regex from Manuel Lemos (mlemos@acm.org)
* $address : email address to check
*/
function ValidEmail($address)
{
if( ereg( ".*<(.+)>", $address, $regs ) ) {
$address = $regs[1];
}
if(ereg( "^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
return true;
else
return false;
}
/* CheckAdresses()
* check validity of email addresses
* if unvalid, output an error message and exit, this may be customized
* $aad : array of emails addresses
*/
function CheckAdresses( $aad )
{
for($i=0;$i< sizeof( $aad); $i++ ) {
if( ! $this->ValidEmail( $aad[$i]) ) {
echo "Class Mail, method Mail : invalid address $aad[$i]";
exit;
}
}
}
/********************** PRIVATE METHODS BELOW **********************************/
/* _build_headers()
* [INTERNAL] build the mail headers
*/
function _build_headers()
{
// creation du header mail
$this->headers= "From: $this->from\n";
$this->to= implode( ", ", $this->sendto );
if( count($this->acc) > 0 ) {
$this->cc= implode( ", ", $this->acc );
$this->headers .= "CC: $this->cc\n";
}
if( count($this->abcc) > 0 ) {
$this->bcc= implode( ", ", $this->abcc );
$this->headers .= "BCC: $this->bcc\n";
}
if( $this->organization != "" )
$this->headers .= "Organization: $this->organization\n";
if( $this->priority != "" )
$this->headers .= "X-Priority: $this->priority\n";
}
/*
* _build_attachement()
* internal use only - check and encode attach file(s)
*/
function _build_attachement()
{
$this->boundary= "------------" . md5( uniqid("myboundary") ); // TODO : variable bound
$this->headers .= "MIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\"$this->boundary\"\n\n";
$this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\nContent-Type: text/plain; charset=us-ascii\nContent-Transfer-Encoding: 7bit\n\n" . $this->body ."\n";
$sep= chr(13) . chr(10);
$ata= array();
$k=0;
// for each attached file, do...
for( $i=0; $i < sizeof( $this->aattach); $i++ ) {
$filename = $this->aattach[$i];
$basename = basename($filename);
$ctype = $this->actype[$i]; // content-type
$disposition = $this->adispo[$i];
if( ! file_exists( $filename) ) {
echo "Class Mail, method attach : file $filename can't be found"; exit;
}
$subhdr= "--$this->boundary\nContent-type: $ctype;\n name=\"$basename\"\nContent-Transfer-Encoding: base64\nContent-Disposition: $disposition;\n filename=\"$basename\"\n";
$ata[$k++] = $subhdr;
// non encoded line length
$linesz= filesize( $filename)+1;
$fp= fopen( $filename, 'r' );
$data= base64_encode(fread( $fp, $linesz));
fclose($fp);
$ata[$k++] = chunk_split( $data );
/*
// OLD version - used in php < 3.0.6 - replaced by chunk_split()
$deb=0; $len=76; $data_len= strlen($data);
do {
$ata[$k++]= substr($data,$deb,$len);
$deb += $len;
} while($deb < $data_len );
*/
}
$this->attachment= implode($sep, $ata);
}
} // class Mail
$subject=StripSlashes($subject);
$msg=StripSlashes($msg);
$msg="Message depuis votre site web:
$msg";
$m= new Mail; // create the mail
$m->From( "$email" );
$m->To( "$dest");
$m->Subject( "$subject" );
$m->Body( $msg); // set the body
if ($email1!="") {
$m->Cc( "$email1");
}
$m->Priority($priority) ;
if ("$NomFichier_name"!="") {
copy("$NomFichier","../upload/$NomFichier_name");
$m->Attach( "../upload/$NomFichier_name", "application/octet-stream" );
}
$m->Send();
if ("$NomFichier_name"!="") {
Unlink("../upload/$NomFichier_name"); }
echo "$reponse";
?>
Sources de la même categorie
Commentaires et avis
|
Derniers Blogs
[WP7] DYNAMICALLY CHANGE STARTUP PAGE[WP7] DYNAMICALLY CHANGE STARTUP PAGE par KooKiz
Let's say that you want to allow the user to customize the startup page of your application. You can easily change the startup page by editing the 'NavigationPage' attribute in the manifest file. But the manifest cannot be modified once the applicatio...
Cliquez pour lire la suite de l'article par KooKiz SESSION SILVERLIGHT 5 3D : SLIDES ET DEMOSSESSION SILVERLIGHT 5 3D : SLIDES ET DEMOS par Groc
Durant les techdays, j'ai eu le plaisir d'animer une session sur Silverlight 5 et la 3D avec Simon Ferquel. Comme promis, voici nos slides et mes démos (celles avec le viper BSG) ici et là. Pour mémoire, les démos utilisent toutes le viper BSG...
Cliquez pour lire la suite de l'article par Groc [TECHDAYS 2012] SESSION WEBMATRIX 2 : LE COUTEAU SUISSE GRATUIT POUR VOS DéVELOPPEMENTS WEB - SLIDES[TECHDAYS 2012] SESSION WEBMATRIX 2 : LE COUTEAU SUISSE GRATUIT POUR VOS DéVELOPPEMENTS WEB - SLIDES par gpommier
Suite à la session que j'ai présenté sur WebMatrix 2, vous pouvez trouver les slides ici, ainsi que les démos en packages nuget : démos1 et démos2 J'en profite pour remercier chaleureusement tous ceux qui sont venus très nombreux à cette sess...
Cliquez pour lire la suite de l'article par gpommier [SHAREPOINT] LES SESSIONS TECHDAYS 2012.[SHAREPOINT] LES SESSIONS TECHDAYS 2012. par Patrick Guimonet
Voici donc pour ceux qui n'ont pas pu venir, ou ceux qui n'ont pas pu toutes les suivre la liste des sessions SharePoint aux TechDays 2012, que je mettrais à jour dès que les liens des vidéo seront disponibles. Ou ici : http...
Cliquez pour lire la suite de l'article par Patrick Guimonet TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3 par ROMELARD Fabrice
Speaker: Bernard Ourghanlian Cette session est comme chaque jour transmise en live par BrainSonic, et j'ai donc suivi cette troisième pleinière par ce moyen sur mon iPad . Elle est dédiée comme chaque année à la mise en perspective de l'é...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Forum
RE : SONDAGE..RE : SONDAGE.. par phpAnonyme
Cliquez pour lire la suite par phpAnonyme RE : SONDAGE..RE : SONDAGE.. par TychoBrahe
Cliquez pour lire la suite par TychoBrahe
Logiciels
Tribler (2012)TRIBLER (2012)Tribler est un client pair à pair (P2P/Peer-to-Peer) open source avec la capacité de regarder des... Cliquez pour télécharger Tribler OneSwarm (2012)ONESWARM (2012)Le peer-to-peer qui protège votre vie privée, c'est OneSwarm.
Ce logiciel de peer-to-peer crypté... Cliquez pour télécharger OneSwarm PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V8.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V8.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning
|